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
I have a similar issue, using pylint 2.14.5 and Python 3.8 on this minimal example:
class Block: def __init__(self): self._cacheDir = None @property def cacheDir(self): if self._cacheDir is None: self.cacheDir = cacheDir return self._cacheDir @cacheDir.setter def cacheDir(self, value: str): self._cacheDir = value
I get this output:
Is there a way to stop the duplicates from showing up or is this the expected behavior?
Originally posted by @VasLem in #83 (comment)
The text was updated successfully, but these errors were encountered:
This is due to these two lines:
if self._cacheDir is None: self.cacheDir = cacheDir
removing them for testing makes the duplication go away.
Sorry, something went wrong.
This was fixed by #9004
No branches or pull requests
I have a similar issue, using pylint 2.14.5 and Python 3.8 on this minimal example:
I get this output:
Is there a way to stop the duplicates from showing up or is this the expected behavior?
Originally posted by @VasLem in #83 (comment)
The text was updated successfully, but these errors were encountered: