not-in-test (E713)#
Derived from the pycodestyle linter.
Autofix is always available.
What it does#
Checks for negative comparison using not {foo} in {bar}
.
Why is this bad?#
Negative comparison should be done using not in
.
Example#
Use instead: