impr: Optimize the number of function calls

This commit is contained in:
Lemon4ksan
2025-01-10 13:48:20 +03:00
parent c521d32bc8
commit bcaba81f41
4 changed files with 131 additions and 69 deletions

View File

@@ -1,6 +1,6 @@
from typing import TypedDict
class User(TypedDict):
class User(TypedDict, total=False):
ym_token: str | None
class ExplicitUser(TypedDict):