bot_configの修正

This commit is contained in:
suti7yk5032 2024-06-07 12:29:49 +09:00
parent f2679a8307
commit bdaf1ac0d8

View file

@ -159,8 +159,8 @@ if not os.path.isfile(bot_config_path):
os.mkdir(config_dir_path)
bot_config = {
"token": "TYPE HERE BOTS TOKEN KEY"
"log_channel_id" "TYPE HERE CHANNEL ID"
"token": "TYPE HERE BOTS TOKEN KEY",
"log_channel_id" : "TYPE HERE CHANNEL ID"
}
with open(bot_config_path, "w") as w:
json.dump(bot_config, w, indent=4)