-
Notifications
You must be signed in to change notification settings - Fork 51
Open
Description
The following code:
if hasattr(inst, 'toPyObject'):
inst = inst.toPyObject()gets converted to:
if hasattr(inst, 'toPyObject'):
inst = instI am unsure whether this is correct!?
Or should it be converted to
if hasattr(inst, 'toPyObject'):
inst = inst.value()Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels