Skip to content

Commit df3dc34

Browse files
committed
Remove some pyright ignores
Signed-off-by: mulhern <amulhern@redhat.com>
1 parent b4c4578 commit df3dc34

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

src/into_dbus_python/_xformer.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -291,13 +291,9 @@ def __init__(self):
291291

292292
self.VARIANT.setParseAction(self._handle_variant)
293293

294-
self.ARRAY.setParseAction( # pyright: ignore [ reportOptionalMemberAccess ]
295-
_ToDbusXformer._handle_array
296-
)
294+
self.ARRAY.setParseAction(_ToDbusXformer._handle_array)
297295

298-
self.STRUCT.setParseAction( # pyright: ignore [ reportOptionalMemberAccess ]
299-
_ToDbusXformer._handle_struct
300-
)
296+
self.STRUCT.setParseAction(_ToDbusXformer._handle_struct)
301297

302298

303299
_XFORMER = _ToDbusXformer()

0 commit comments

Comments
 (0)