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? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “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? Sign in to your account
Use metaclasses as it supposed to be in python
# StructuredRelBase: type = RelationshipMeta( # "RelationshipBase", (AsyncPropertyManager,), {} # ) class StructuredRelBase(AsyncPropertyManager, metaclass=RelationshipMeta): pass
This notation helps use inherited methods inside ide such as deflate, __properties__ etc. In addition IDE won't complain about unresolved reference
deflate
__properties__
The text was updated successfully, but these errors were encountered:
Use new style metaclass to make InteliSence work #853
7ca5503
Successfully merging a pull request may close this issue.
Feature description
Use metaclasses as it supposed to be in python
How this feature can improve the project?
This notation helps use inherited methods inside ide such as
deflate
,__properties__
etc. In addition IDE won't complain about unresolved referenceThe text was updated successfully, but these errors were encountered: