We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4c4578 commit df3dc34Copy full SHA for df3dc34
1 file changed
src/into_dbus_python/_xformer.py
@@ -291,13 +291,9 @@ def __init__(self):
291
292
self.VARIANT.setParseAction(self._handle_variant)
293
294
- self.ARRAY.setParseAction( # pyright: ignore [ reportOptionalMemberAccess ]
295
- _ToDbusXformer._handle_array
296
- )
+ self.ARRAY.setParseAction(_ToDbusXformer._handle_array)
297
298
- self.STRUCT.setParseAction( # pyright: ignore [ reportOptionalMemberAccess ]
299
- _ToDbusXformer._handle_struct
300
+ self.STRUCT.setParseAction(_ToDbusXformer._handle_struct)
301
302
303
_XFORMER = _ToDbusXformer()
0 commit comments