not-in-test (E713)
Added in v0.0.28 · Related issues · View source
Derived from the pycodestyle linter.
Fix is always available.
What it does
Checks for membership tests using not {element} in {collection}.
Why is this bad?
Testing membership with {element} not in {collection} is more readable.
Example
Use instead: