- Removed unnecessary imports from various UI files to streamline the codebase. - Deleted the unused documentation viewer implementation in `documentationview.py`. - Cleaned up imports in `files.py` by removing `LOG_DIR` as it was not used. - Removed the temporary script `temp.py` as it was no longer needed.
11 lines
203 B
Python
11 lines
203 B
Python
__all__ = [
|
|
"Icon",
|
|
"SemesterDocument",
|
|
"app_sort",
|
|
"name_sort",
|
|
]
|
|
|
|
from .icon import Icon
|
|
from .richtext import SemesterDocument
|
|
from .sortgenerator import app_sort, name_sort
|