-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pull request míří na úpravu anket podle issues. Zejména se jedná o tyto věci: - Přidání možnosti po vytvoření ankety - Anketa, když jí vyprší čas, by se měla automaticky smazat a odeslat prázdný embed s pouze hlasy. - Malé grafické úpravy Tyto změny by měly obecně prospět anketám a byly by mnohem přehlednější. Související issues: - [x] #29 - [x] #22 - [x] #21 TODO: - [x] Code cleanup - [x] Přidat type hinting - [ ] Ozkoušet a otestovat kód - [x] Přidat error handling - [x] Vyřešit bug, že `raise` keyword automaticky nepošle error. #30 bude místo, kde se bude hromadně testovat každá funkcionalita Jáchyma. Pro teď merguji.
- Loading branch information
Showing
20 changed files
with
346 additions
and
96 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,5 @@ __pycache__ | |
/discord.log | ||
.DS_STORE | ||
.vscode | ||
.ruff_cache | ||
.pytest_cache |
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 |
---|---|---|
|
@@ -2,4 +2,5 @@ python-dotenv==0.17.1 | |
|
||
aiomysql>=0.0.22 | ||
pytest>=7.3.1 | ||
loguru>=0.7.0 | ||
loguru>=0.7.0 | ||
dateparser>=1.1.8 |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Metadata-Version: 2.1 | ||
Name: UNKNOWN | ||
Version: 0.0.0 | ||
License-File: LICENSE |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
LICENSE | ||
pyproject.toml | ||
src/__init__.py | ||
src/helpers.py | ||
src/jachym.py | ||
src/UNKNOWN.egg-info/PKG-INFO | ||
src/UNKNOWN.egg-info/SOURCES.txt | ||
src/UNKNOWN.egg-info/dependency_links.txt | ||
src/UNKNOWN.egg-info/top_level.txt | ||
src/db_folder/databases.py | ||
src/ui/__init__.py | ||
src/ui/button.py | ||
src/ui/embeds.py | ||
src/ui/emojis.py | ||
src/ui/error_view.py | ||
src/ui/modals.py | ||
src/ui/poll.py | ||
src/ui/poll_view.py | ||
tests/test_pool.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 |
---|---|---|
@@ -0,0 +1 @@ | ||
|
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
__init__ | ||
db_folder | ||
helpers | ||
jachym | ||
text_json | ||
ui |
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
Oops, something went wrong.