Skip to content

Commit 66a1f7d

Browse files
committed
2 parents add8aaa + a506c77 commit 66a1f7d

File tree

3 files changed

+6
-17
lines changed

3 files changed

+6
-17
lines changed

bot.sh

100644100755
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cd discord_bot
2-
python -m venv .venv
3-
source ./venv/Scripts/activate
2+
python3 -m venv .venv
3+
source ./.venv/bin/activate
44
pip install -r requirements.txt
5-
python index.py
5+
python3 index.py

discord_bot/requirements.txt

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,2 @@
1-
aiohappyeyeballs==2.6.1
2-
aiohttp==3.12.13
3-
aiosignal==1.4.0
4-
attrs==25.3.0
5-
audioop-lts==0.2.1
6-
discord.py==2.5.2
7-
frozenlist==1.7.0
8-
idna==3.10
9-
multidict==6.6.3
10-
propcache==0.3.2
11-
python-dotenv==1.1.1
12-
tzdata==2025.2
13-
yarl==1.20.1
1+
discord.py
2+
python-dotenv

discord_bot/util/state.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from zoneinfo import ZoneInfo
33
from discord.ext import commands
44

5-
type submissions_map = dict[str, str]
5+
submissions_map = dict[str, str]
66

77

88
class State:

0 commit comments

Comments
 (0)