You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pylint complains about creation of members outside if the constructor. This happens for all members of AsyncObjects, since we declare them in __ainit__ and not in __init__.
pylint does not understand the installation of the get_ and set_ function of the Parameters. Therefore, it complains for all (async) parameter accesses with a no-member error.
I did't see a simple fix (beside deactivating all no-member and attribute-defined-outside-init errors/warnings) in the pylint configs.
Maybe anybody has a clever idea.
The text was updated successfully, but these errors were encountered:
Pylint has some problems with our code:
pylint complains about creation of members outside if the constructor. This happens for all members of
AsyncObject
s, since we declare them in__ainit__
and not in__init__
.pylint does not understand the installation of the get_ and set_ function of the Parameters. Therefore, it complains for all (async) parameter accesses with a no-member error.
I did't see a simple fix (beside deactivating all no-member and attribute-defined-outside-init errors/warnings) in the pylint configs.
Maybe anybody has a clever idea.
The text was updated successfully, but these errors were encountered: