We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd249ad commit 646e92eCopy full SHA for 646e92e
api/python/slint/slint/codegen/emitters.py
@@ -186,9 +186,7 @@ def register_type(type_str: str) -> None:
186
export_names = [component.py_name for component in artifacts.components]
187
export_names += [struct.py_name for struct in artifacts.structs]
188
export_names += [enum.py_name for enum in artifacts.enums]
189
- export_names += [
190
- _normalize_prop(alias) for _, alias in artifacts.named_exports
191
- ]
+ export_names += [_normalize_prop(alias) for _, alias in artifacts.named_exports]
192
if export_names:
193
all_list = cst.List(
194
elements=[
0 commit comments