diff options
-rw-r--r-- | fietsboek/util.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fietsboek/util.py b/fietsboek/util.py index 9269b67..a4f2891 100644 --- a/fietsboek/util.py +++ b/fietsboek/util.py @@ -277,7 +277,10 @@ def check_password_constraints(password: str, repeat_password: Optional[str] = N def read_localized_resource( - locale_name: str, path: str, locale_packages: List[str] = None, raise_on_error: bool = False + locale_name: str, + path: str, + locale_packages: Optional[List[str]] = None, + raise_on_error: bool = False, ) -> str: """Reads a localized resource. |