remove seemingly redundant pyflakes references

This commit is contained in:
Thomas Grainger
2017-04-18 10:52:34 +01:00
parent b8674db246
commit fcb272cc36
3 changed files with 0 additions and 5 deletions
-1
View File
@@ -6,7 +6,6 @@ junit-report.xml
pylint.txt
toy.py
tox.ini
violations.pyflakes.txt
cover/
build/
docs/_build
-2
View File
@@ -19,8 +19,6 @@ from .compat import cookielib, urlparse, urlunparse, Morsel
try:
import threading
# grr, pyflakes: this fixes "redefinition of unused 'threading'"
threading
except ImportError:
import dummy_threading as threading
-2
View File
@@ -32,8 +32,6 @@ from .structures import CaseInsensitiveDict, TimedCache, TimedCacheManaged
from .exceptions import (
InvalidURL, InvalidHeader, FileModeWarning, UnrewindableBodyError)
_hush_pyflakes = (RequestsCookieJar,)
NETRC_FILES = ('.netrc', '_netrc')
DEFAULT_CA_BUNDLE_PATH = certs.where()