12 lines
276 B
Python
12 lines
276 B
Python
|
from PyQt5 import QtCore, QtWidgets, uic
|
||
|
import os
|
||
|
|
||
|
from ui.project.project_panel_ui import Ui_Form
|
||
|
|
||
|
class ProjectPanel(QtWidgets.QWidget):
|
||
|
|
||
|
def __init__(self):
|
||
|
super(ProjectPanel, self).__init__()
|
||
|
self.ui = Ui_Form()
|
||
|
self.ui.setupUi(self)
|
||
|
|