Исправление пару багов

This commit is contained in:
2026-06-11 13:18:26 +03:00
parent 97d9a462fe
commit 2a77028038
2 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ import os
import json
if not os.path.exists('conf.json'):
db = {'api_token': 'None'}
db = {'api_token': 'None', 'ytdlp_way': 'None'}
js = json.dumps(db, indent=2)
with open("conf.json", "w") as outfile:
outfile.write(js)