Files
SemesterapparatsManager/src/backend/documentation_thread.py

12 lines
243 B
Python

from PyQt6.QtCore import QThread
from src.utils.documentation import run_mkdocs
class DocumentationThread(QThread):
def __init__(self):
super().__init__()
def run(self):
# launch_documentation()
run_mkdocs()