mirror of
https://github.com/283375/arcaea-offline-ocr-model.git
synced 2025-04-21 21:40:17 +00:00
10 lines
233 B
Python
10 lines
233 B
Python
from PySide6.QtWidgets import QDialog
|
|
|
|
from .yieldProgress_ui import Ui_YieldProgress
|
|
|
|
|
|
class YieldProgress(Ui_YieldProgress, QDialog):
|
|
def __init__(self, parent=None):
|
|
super().__init__(parent)
|
|
self.setupUi(self)
|