We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? No Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “No Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? No Sign in to your account
if issubclass( Form, CustomForm ): print('yeee') else: print('nope') # always here
It seems that tp_base of the inherited class is not set.
The text was updated successfully, but these errors were encountered:
Indeed, tp_base is never set. Is it important?
Could be fixed in a couple of ways.
__subclasshook__
Sorry, something went wrong.
a945a65
@cosina Could you please confirm it is now working as expected?
Call to inherited removed from RegisterMethods and RegisterGetSets, f…
45ca26c
…ollowing the fix to #382
No branches or pull requests
if issubclass( Form, CustomForm ):
print('yeee')
else:
print('nope') # always here
It seems that tp_base of the inherited class is not set.
The text was updated successfully, but these errors were encountered: