11 lines
254 B
Python
11 lines
254 B
Python
from PyQt6.QtCore import QThread, pyqtSignal
|
|
from src.utils.documentation import run_mkdocs
|
|
|
|
class DocumentationThread(QThread):
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
def run(self):
|
|
# launch_documentation()
|
|
run_mkdocs()
|