7 lines
155 B
Python
7 lines
155 B
Python
from ui.components.widget import Widget
|
|
|
|
|
|
class PickerWidget(Widget):
|
|
def __init__(self, key: str, parent=None):
|
|
super().__init__(key, parent)
|