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
------------------------------------
Your code has been rated at 10.00/10
What I would like:
featreq.py:19:4: W0000: Method differs from overridden 'func' method
Additional context
Note the additional "async" in method Base.func, or the missing "async" in method Derived.func.
Of course, the reverse, a missing "async" in method Base.func and an additional "async" in method Derived.func should also produce a warning.
The text was updated successfully, but these errors were encountered:
Would it make more sense to have W0236: invalid-overridden-method include this case or to just create a new warning message? Currently invalid-overridden-method is specific to property checks.
EDIT: Submitted a PR that uses a new warning: invalid-overridden-coroutine
Is your feature request related to a problem? Please describe
No.
Describe the solution you'd like
Create file "featreq.py"
Currently, pylint featreq.py produces:
What I would like:
Additional context
Note the additional "async" in method Base.func, or the missing "async" in method Derived.func.
Of course, the reverse, a missing "async" in method Base.func and an additional "async" in method Derived.func should also produce a warning.
The text was updated successfully, but these errors were encountered: