Slight reformatting

This commit is contained in:
2024-08-30 18:48:40 +02:00
parent 0cff53cf42
commit 3340b77efe
3 changed files with 9 additions and 7 deletions

View File

@ -20,6 +20,8 @@ class ApiSession():
"year": int
}
def __init__(self, response: dict[str, str] | None):
if response is None:
return
@ -55,4 +57,4 @@ class ApiSession():
gmt_offset: time = None # type: ignore
session_key: int = None # type: ignore
meeting_key: int = None # type: ignore
year: int = None # type: ignore
year: int = None # type: ignore