-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. `cogs/academia_resources.py`: - Updated the `Resource` class with a new command `submit` for submitting academic resources. - Added choices for resource types. - Modified the `get_choices` function to filter choices based on the current input. - Updated the `submit` function to store resource details in the database and send a confirmation message. 2. `cogs/arithmetic.py`: - Added a description to the `simple-functions` command. 3. `cogs/atlas.py`: - Added a TODO comment for correcting the playing game order and lists. 4. `cogs/leveling.py`: - Updated the embed message with the user's avatar. - Modified the `lb` function to fetch the latest leveling details. 5. `discord.py`: - Updated the subproject commit hash. 6. `keeplive.py`: - Added a space for readability. 7. `utils/automod.py`: - Fixed a minor formatting issue in the `text_moderation` function.
- Loading branch information
1 parent
3659530
commit 027716a
Showing
7 changed files
with
32 additions
and
20 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
Submodule discord.py
updated
from 425edd to 6ecd37
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,14 +1,18 @@ | ||
from flask import Flask | ||
from threading import Thread | ||
|
||
app = Flask('') | ||
app = Flask("") | ||
|
||
@app.route('/') | ||
|
||
@app.route("/") | ||
def home(): | ||
return "Accumen alive alright" | ||
|
||
|
||
def run(): | ||
app.run(host='0.0.0.0', port=8080) | ||
app.run(host="0.0.0.0", port=8080) | ||
|
||
|
||
def keep_alive(): | ||
t = Thread(target=run) | ||
t.start() | ||
t.start() |
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