First commit
This commit is contained in:
12
ui/tab_plan41.py
Normal file
12
ui/tab_plan41.py
Normal file
@@ -0,0 +1,12 @@
|
||||
# tab_info.py
|
||||
from qgis.PyQt import uic
|
||||
from qgis.PyQt.QtWidgets import QWidget
|
||||
import os
|
||||
|
||||
FORM_CLASS, _ = uic.loadUiType(os.path.join(
|
||||
os.path.dirname(__file__), 'tab_plan41.ui'))
|
||||
|
||||
class TabPlan41Widget(QWidget, FORM_CLASS):
|
||||
def __init__(self, parent=None):
|
||||
super().__init__(parent)
|
||||
self.setupUi(self)
|
||||
Reference in New Issue
Block a user