-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from srobo/kjk/team-management
Add team management commands
- Loading branch information
Showing
19 changed files
with
639 additions
and
217 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DISCORD_TOKEN=BLAHBLAH | ||
DISCORD_TOKEN= | ||
DISCORD_GUILD_ID= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
python-dotenv | ||
discord | ||
discord.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,32 @@ | ||
# | ||
# This file is autogenerated by pip-compile with Python 3.9 | ||
# This file is autogenerated by pip-compile with Python 3.10 | ||
# by the following command: | ||
# | ||
# pip-compile | ||
# | ||
aiohttp==3.7.4.post0 | ||
aiohappyeyeballs==2.3.4 | ||
# via aiohttp | ||
aiohttp==3.10.1 | ||
# via discord-py | ||
async-timeout==3.0.1 | ||
aiosignal==1.3.1 | ||
# via aiohttp | ||
attrs==21.2.0 | ||
async-timeout==4.0.3 | ||
# via aiohttp | ||
chardet==4.0.0 | ||
attrs==24.1.0 | ||
# via aiohttp | ||
discord==1.7.3 | ||
discord-py==2.4.0 | ||
# via -r requirements.in | ||
discord-py==1.7.3 | ||
# via discord | ||
idna==3.3 | ||
frozenlist==1.4.1 | ||
# via | ||
# aiohttp | ||
# aiosignal | ||
idna==3.7 | ||
# via yarl | ||
multidict==5.2.0 | ||
multidict==6.0.5 | ||
# via | ||
# aiohttp | ||
# yarl | ||
python-dotenv==0.19.1 | ||
python-dotenv==1.0.1 | ||
# via -r requirements.in | ||
typing-extensions==4.7.1 | ||
# via aiohttp | ||
yarl==1.7.2 | ||
yarl==1.9.4 | ||
# via aiohttp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
if [ -z "$FLAKE8" ]; then | ||
FLAKE8=flake8 | ||
fi | ||
exec "$FLAKE8" main.py "$@" | ||
exec "$FLAKE8" src/**.py "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
if [ -z "$MYPY" ]; then | ||
MYPY=mypy | ||
fi | ||
exec "$MYPY" main.py | ||
exec "$MYPY" src/**.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Oops, something went wrong.