create documentation thread
This commit is contained in:
11
src/backend/documentation_thread.py
Normal file
11
src/backend/documentation_thread.py
Normal 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()
|
||||
Reference in New Issue
Block a user