Fix missing default parameter.

This commit is contained in:
Dan Albert 2020-10-10 14:05:25 -07:00
parent 1ac062653d
commit 55f12f20c1

View File

@ -13,7 +13,7 @@ class QLabeledWidget(QHBoxLayout):
"""
def __init__(self, text: str, widget: QWidget,
tooltip: Optional[str]) -> None:
tooltip: Optional[str] = None) -> None:
super().__init__()
label = QLabel(text)
self.addWidget(label)