Skip to content

Commit dd0ebaa

Browse files
committed
Merge branch 'main' into rewrite
2 parents 53d52f2 + 4c69618 commit dd0ebaa

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
REDIS_HOST = os.environ.get('REDIS_HOST')
2020
REDIS_PORT = int(os.environ.get('REDIS_PORT', 6379))
2121

22-
ENBALE_DISCORD_BOT = eval(os.environ.get('ENBALE_DISCORD_BOT', 'True').capitalize())
22+
ENABLE_DISCORD_BOT = eval(os.environ.get('ENABLE_DISCORD_BOT', 'True').capitalize())
2323
BOT_PREFIX = os.environ.get('DISCORD_BOT_PREFIX')
2424
BOT_TOKEN = os.environ.get('DISCORD_BOT_TOKEN')
2525

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
)
1313

1414
def main():
15-
if not config.ENBALE_DISCORD_BOT:
15+
if not config.ENABLE_DISCORD_BOT:
1616
logging.warning("BanchoBot is disabled, exiting...")
1717
exit(0)
1818

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ python-dotenv==1.1.1
99
redis==6.4.0
1010
requests==2.32.4
1111
sendgrid==6.12.4
12-
sqlalchemy==2.0.42
12+
sqlalchemy==2.0.43
1313
timeago==1.0.16
1414
rosu-pp-py==3.1.0

0 commit comments

Comments
 (0)