mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +00:00
Fix missing default parameter.
This commit is contained in:
parent
1ac062653d
commit
55f12f20c1
@ -13,7 +13,7 @@ class QLabeledWidget(QHBoxLayout):
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, text: str, widget: QWidget,
|
def __init__(self, text: str, widget: QWidget,
|
||||||
tooltip: Optional[str]) -> None:
|
tooltip: Optional[str] = None) -> None:
|
||||||
super().__init__()
|
super().__init__()
|
||||||
label = QLabel(text)
|
label = QLabel(text)
|
||||||
self.addWidget(label)
|
self.addWidget(label)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user