We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc1ffce commit 6bbe229Copy full SHA for 6bbe229
.dockerignore
@@ -1,4 +1,4 @@
1
*
2
!poetry.lock
3
!pyproject.toml
4
-!bolb-bot/*
+!bolb_bot/*
bolb_bot/__main__.py
@@ -18,13 +18,13 @@ class MyBot(BotBase):
18
...
19
20
21
-bot = MyBot(intents=intents, config_module="bolb-bot.config")
+bot = MyBot(intents=intents, config_module="bolb_bot.config")
22
23
24
if __name__ == "__main__":
25
- for filename in listdir("bolb-bot/cogs"):
+ for filename in listdir("bolb_bot/cogs"):
26
if filename.endswith(".py"):
27
- bot.load_extension(f"bolb-bot.cogs.{filename[:-3]}")
+ bot.load_extension(f"bolb_bot.cogs.{filename[:-3]}")
28
else:
29
if isfile(filename):
30
print(f"Unable to load {filename[:-3]}")
0 commit comments