Files

66 lines
3.4 KiB
Python

class todo:
def __init__(self):
# ------------------------------------------------------------------------------------------------------------------#
self.todo: str = """
TODO:
[ ] main.py@GENERAL - refactor to make the ChatGPT Code actually readable.
[x] main.py@TODO - Refactor and make it look nicer! PRIO: HIGH
[ ] @Project_Structure - Fix this shit
- Isnt too bad , we can work with the structure.
"""
# ------------------------------------------------------------------------------------------------------------------#
self.archived_todo: str = """
archived_todo list:
[X] main.py@433 - {FINISHED: 12.JUN.25@21:20} - 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.
[X] @ImportStructure - {FINISHED: 13.SEP.25@18:47} - Fix the Import structure, it currently looks like ass. At least the local ImportStructure.
- @LocalImportStructure => Fix by end of next week. (KW25)
"""
# ------------------------------------------------------------------------------------------------------------------#
self.changelog: str = """
Changelog:
13.SEP.25@18:49 => Fixed µScan.
- Fixed the UI, made it look better and made the Scanner run better.
- Mainly OpenCV as a C extern
- Tkinter pulls it together.
- Its Threaded, so it runs better.
Fixed Todo Widget to look better. You can see @main:PfandCalculator/create_todo_list()
- Now has a progressbar which counts the elements in the Todo variable, if you check one off [x]. then it counts as finished and the
progressbar advances! main.py@PfandCalculator/create_todo_list/return_elements(str) -> tuple[int, int, int]
Third returned Element being The percent out of 100, which is done.
12.JUN.25@21:23 => Changed the Todo List to be much more readable.
12.JUN.25@21:20 => Fixed Todo List Load Bug. Now loads properly. It was a import issue.
"""
# ------------------------------------------------------------------------------------------------------------------#
self.tldr : str = """
Quick TLDR:
If you see any "ref" in the main.py file you are probably looking at a reference to a certain file.
example: ref@todo/main.py , element int(x)
This is refering to the todo list with element of X
This can be for other things too, such as other Methods in Classes.
example: ref@tgtg_orderchecker/main.py@method/class/variable
This is refering to some object.
if you see any "@" , you are probably seeing a reference to the todo list.
for example element 3 in todo (@LocalImportStructure)
"""
# ---------------------------------------------------------------------------------------------------------------------#
# Methods to return the things we want.
def load_todo(self) -> str:
return self.todo
def load_changelog(self) -> str:
return self.changelog
def load_tldr(self) -> str:
return self.tldr
# toodoo bug may also reside here. idk
todo_instance = todo()