fixed some stuff and translated somethings

This commit is contained in:
2025-09-13 17:51:44 +02:00
parent d9efaa4620
commit 5b51c67069
6 changed files with 34 additions and 41 deletions

View File

@@ -1,16 +1,4 @@
"""
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@12:32
This is refering to the tgtg oc at main 12:32.
if you see any "@" , you are probably seeing a reference to the todo list.
for example element 3 in todo (@LocalImportStructure)
"""
class todo:
@@ -19,9 +7,10 @@ class todo:
self.todo: str = """
TODO:
[] main.py@GENERAL - refactor to make the ChatGPT Code actually readable.
[] 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.
[] @ImportStructure - Fix the Import structure, it currently looks like ass. At least the local ImportStructure.
[x] @ImportStructure - Fix the Import structure, it currently looks like ass. At least the local ImportStructure.
- @LocalImportStructure => Fix by end of next week. (KW25)
"""
# ------------------------------------------------------------------------------------------------------------------#
@@ -37,6 +26,20 @@ Changelog:
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@12:32
This is refering to the tgtg oc at main 12:32.
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:
@@ -45,6 +48,8 @@ Changelog:
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()