Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
flake8: disable E731: do not assign a lambda expression, use a def
It has too many false positives. It was complaining about things like if this: fn = some_func else: fn = lambda x: ... Where obviously, "fn" can't be a def, and it would be silly to introduce some other name to use as the def, just to assign it to fn.
- Loading branch information