fix: made bot token default to None instead of 0

This commit is contained in:
Seaswimmer 2023-08-10 22:22:09 -04:00
parent 84b11bf28b
commit 7054a3e181
No known key found for this signature in database
GPG key ID: 5019678FD9CF50D8

View file

@ -11,7 +11,7 @@ class ExportChannels(commands.Cog):
self.bot = bot
self.config = Config.get_conf(self, identifier=48258471944753312)
self.config.register_global(
bot_token = "0"
bot_token = None
)