From 7054a3e1815f8ba246f9340e4134e12a42553fd1 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Thu, 10 Aug 2023 22:22:09 -0400 Subject: [PATCH] fix: made bot token default to None instead of 0 --- exportchannels/exportchannels.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exportchannels/exportchannels.py b/exportchannels/exportchannels.py index 8eac167..3437ce2 100644 --- a/exportchannels/exportchannels.py +++ b/exportchannels/exportchannels.py @@ -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 )