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 1.5 brought with it much more than
pylint.extensions.check_docs
The changes for this PR are
- checking import order
- checking self._foo is set in __init__
- complaining about methods that don't use self
- complaining about not calling super().__init__ (for
the virtual base class we used)
- complaining about not (self == other) in __ne__,
suggested (self != other) instead
- complaining about unit tests checking None result from methods
which are known (by static analysis?) to return None
- complaining about not over-riding virtual method in storage
_PropertyMixin
- aggressively checking `redefined-variable-type` when variables
can be optionally float/int/Entity/Key/etc.
- checking that GCloudError constructor is called correctly
in unit tests
- checking that subclass method overrides use the same arguments
(this occurred in BigQuery test_job with _makeResource)
0 commit comments