nonlocal-without-binding (PLE0117)
Derived from the Pylint linter.
What it does
Checks for nonlocal
names without bindings.
Why is this bad?
nonlocal
names must be bound to a name in an outer scope.
Example
Use instead:
Derived from the Pylint linter.
Checks for nonlocal
names without bindings.
nonlocal
names must be bound to a name in an outer scope.
Use instead: