mirror of
https://github.com/ModOrganizer2/modorganizer-plugin_python.git
synced 2026-07-27 14:03:33 -07:00
13 lines
195 B
Python
13 lines
195 B
Python
import os
|
|
import sys
|
|
|
|
from PyQt6.QtWidgets import QApplication
|
|
|
|
|
|
def pytest_configure():
|
|
global app
|
|
|
|
os.add_dll_directory(str(os.getenv("UIBASE_PATH")))
|
|
|
|
app = QApplication(sys.argv)
|