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 expect this to flag two errors:
def f(): class IAmUnused: pass def i_am_unused(): pass
The text was updated successfully, but these errors were encountered:
I mistakenly re-reported this on flake8 yesterday. The real world use case I saw was accidentally overly indented tests:
class MyTests(TestCase): def setUp(self): self.thing = Thing() def test_thing_1(self): self.assertEqual(self.thing.foo, "foo")
instead of:
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
I expect this to flag two errors:
The text was updated successfully, but these errors were encountered: