refactored the logic of how todo list is loade

This commit is contained in:
rattatwinko
2025-06-12 21:16:43 +02:00
parent 7154669572
commit 29b8fc84df
2 changed files with 819 additions and 451 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -4,11 +4,18 @@ class todo:
self.todo: str = """
TODO:
[] main.py@433 - fix this to actually load the Todo List cause currently its dumb as fuck.
[X] main.py@433 - fix this to actually load the Todo List cause currently its dumb as fuck.
- Do this tmrw 11.JUN.25! easy task. at least it should be.
[] main.py@GENERAL - refactor to make the ChatGPT Code actually readable.
[] @Project_Structure - Fix this shit
"""
# ------------------------------------------------------------------------------------------------------------------#
self.archived_todo: str = """
archived_todo list:
[X] main.py@433 - fix this to actually load the Todo List cause currently its dumb as fuck.
- Do this tmrw 11.JUN.25! easy task. at least it should be.
"""
# ------------------------------------------------------------------------------------------------------------------#
self.pineapple = """
@@ -51,6 +58,7 @@ TODO:
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠻⠷⣦⣄⣀⣉⣻⣶⢴⣞⣋⣠⣴⡶⠟⠋⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠉⠉⠛⠛⠛⠉⠉⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
"""
# ------------------------------------------------------------------------------------------------------------------#
# This Project is certainly older than mucapy , But still i declare types now. in todo code xD
@@ -61,3 +69,4 @@ TODO:
# toodoo bug may also reside here. idk
todo_instance = todo()