create documentation thread

This commit is contained in:
2025-02-06 15:35:08 +01:00
parent b7bb56cec5
commit 4d1fc94ffa
2 changed files with 13 additions and 1 deletions

View File

@@ -3,4 +3,5 @@ from .semester import Semester
from .admin_console import AdminCommands
from .thread_bookgrabber import BookGrabber
from .threads_availchecker import AvailChecker
from .threads_autoadder import AutoAdder
from .threads_autoadder import AutoAdder
from .documentation_thread import DocumentationThread

View File

@@ -0,0 +1,11 @@
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()