all ruff checking and modify Converter class

This commit is contained in:
2024-06-21 12:30:27 +07:00
parent cd3bae23e6
commit e1034fb927
19 changed files with 1067 additions and 995 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ import json
def load_data():
try:
with open('users.json', 'r') as f:
with open('users.json') as f:
return json.load(f)
except FileNotFoundError:
return {'users': [], 'chats': []}