Skip to content

Commit

Permalink
run black
Browse files Browse the repository at this point in the history
  • Loading branch information
kritzl committed Mar 31, 2024
1 parent 3d72d03 commit db52663
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion mafiasi/base/special_day_middleware.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def __call__(self, request):

# first of april (april fools)
if n.day == 1 and n.month == 4:
translation.activate('en-uwu')
translation.activate("en-uwu")
request.LANGUAGE_CODE = translation.get_language()

# call view
Expand Down
1 change: 1 addition & 0 deletions mafiasi/vault/vw_admin.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Implementation of a Vaultwarden admin API client
"""

import enum
from dataclasses import dataclass
from typing import Any, List, Mapping, Optional, Type, TypedDict, TypeVar
Expand Down
1 change: 1 addition & 0 deletions mafiasi/wsgi.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
framework.
"""

import os

# We defer to a DJANGO_SETTINGS_MODULE already in the environment. This breaks
Expand Down

0 comments on commit db52663

Please sign in to comment.