flake8 config: remove line that exists only for Python-2 checking (#7570)

This commit is contained in:
Alex Waygood
2022-04-01 07:07:16 +01:00
committed by GitHub
parent da3e69d093
commit ae6ff79c0e
2 changed files with 1 additions and 3 deletions

View File

@@ -11,7 +11,7 @@ else:
unicode = unicode
unichr = unichr
basestring = basestring
interactive_prompt = raw_input
interactive_prompt = raw_input # noqa: F821 # exists as a builtin in Python 2, but not in Python 3
from StringIO import StringIO as StringIO
from HTMLParser import HTMLParser as HTMLParser