Skip to content

Commit 6bbe229

Browse files
committed
chore: foroor changes
1 parent bc1ffce commit 6bbe229

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.dockerignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
*
22
!poetry.lock
33
!pyproject.toml
4-
!bolb-bot/*
4+
!bolb_bot/*

bolb_bot/__main__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ class MyBot(BotBase):
1818
...
1919

2020

21-
bot = MyBot(intents=intents, config_module="bolb-bot.config")
21+
bot = MyBot(intents=intents, config_module="bolb_bot.config")
2222

2323

2424
if __name__ == "__main__":
25-
for filename in listdir("bolb-bot/cogs"):
25+
for filename in listdir("bolb_bot/cogs"):
2626
if filename.endswith(".py"):
27-
bot.load_extension(f"bolb-bot.cogs.{filename[:-3]}")
27+
bot.load_extension(f"bolb_bot.cogs.{filename[:-3]}")
2828
else:
2929
if isfile(filename):
3030
print(f"Unable to load {filename[:-3]}")

0 commit comments

Comments
 (0)