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

This commit is contained in:
2025-08-13 10:46:02 +00:00
parent 4dbeebdfcf
commit adb8a32840
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)