creating and removing accounts

This commit is contained in:
BarsTiger
2022-08-09 11:07:20 +03:00
parent eb3f494bd3
commit 12cc20175e
13 changed files with 772 additions and 264 deletions

View File

@@ -29,7 +29,7 @@ class Config:
return Config.get()
@staticmethod
def update(key: str, value: str) -> dict:
def update(key: str, value: str | None) -> dict:
with open("config.cfg", "r") as file:
settings = json.load(file)