13 lines
347 B
Python
13 lines
347 B
Python
|
|
# 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_verfahrensgebiet.ui'))
|
||
|
|
|
||
|
|
class TabVerfahrensgebietWidget(QWidget, FORM_CLASS):
|
||
|
|
def __init__(self, parent=None):
|
||
|
|
super().__init__(parent)
|
||
|
|
self.setupUi(self)
|