9 lines
226 B
Python
9 lines
226 B
Python
from PyQt6.QtCore import QThread, pyqtSignal
|
|
from src.utils import launch_documentation
|
|
|
|
class DocumentationThread(QThread):
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
def run(self):
|
|
launch_documentation() |