Answer the question
In order to leave comments, you need to log in
Why is FLAKE8 giving error E800?
Used flake8, wrote a simple code - a pig
# usr/bin/env python3
# noqa: Z432
count = 0
for _i in range(20):
count += 1
print(count)
Answer the question
In order to leave comments, you need to log in
The noqa comment is written on the line where the problem needs to be ignored.for _i in range(20): # noqa: Z432
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question