This commit is contained in:
Dan Albert
2021-02-12 19:58:30 -08:00
parent 053663bd76
commit a47bef1f13
222 changed files with 8434 additions and 4461 deletions

View File

@@ -12,8 +12,9 @@ class QLabeledWidget(QHBoxLayout):
label is used to name the input.
"""
def __init__(self, text: str, widget: QWidget,
tooltip: Optional[str] = None) -> None:
def __init__(
self, text: str, widget: QWidget, tooltip: Optional[str] = None
) -> None:
super().__init__()
label = QLabel(text)
self.addWidget(label)