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
{{ message }}
This repository has been archived by the owner on Nov 11, 2020. It is now read-only.
class Bar(object):
@property
def foo(self):
return self._foo
@foo.setter
def foo(self, value):
self._foo = value
This is absolutely valid python code but django lint tells me:
bar.py.XX: redefinition of function 'foo' from line XX
The info of django lint tells 'Django Lint is a wrapper around PyLint', but when I test this with pylint there is NO error like E:XXX,XX:Bar.foo: method already defined line XX
The text was updated successfully, but these errors were encountered:
When in my code I have:
This is absolutely valid python code but django lint tells me:
The info of django lint tells 'Django Lint is a wrapper around PyLint', but when I test this with pylint there is NO error like E:XXX,XX:Bar.foo: method already defined line XX
The text was updated successfully, but these errors were encountered: