This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
[flake8]
ignore=
# whitespace before ‘:’
E203,
# too many leading '#' for block comment
E266,
# block comment should start with ‘# ‘
E265,
# module level import not at top of file
E402,
# line too long (82 > 79 characters)
E501,
# do not assign a lambda expression, use a def
E731
# line break before binary operator (default)
W503,
# doc line too long (82 > 79 characters) (default)
W505,
# name may be undefined, or defined from star imports: module
F405,
# redefinition of unused name from line n
F811,
# undefined name name
F821,
# local variable name is assigned to but never used