mirror of
https://github.com/283375/arcaea-offline-pyside-ui.git
synced 2025-04-19 09:10:18 +00:00
10 lines
241 B
Python
10 lines
241 B
Python
from PySide6.QtWidgets import QWidget
|
|
|
|
from ui.designer.tabs.tabOcrEntry_ui import Ui_TabOcrEntry
|
|
|
|
|
|
class TabOcrEntry(Ui_TabOcrEntry, QWidget):
|
|
def __init__(self, parent=None):
|
|
super().__init__(parent)
|
|
self.setupUi(self)
|