Fixing flake8 F403, F405 errors

This commit is contained in:
Lukasz Langa
2016-12-20 02:28:12 -08:00
parent 99a57e5cbe
commit 82b2d8e3bc
24 changed files with 36 additions and 33 deletions

View File

@@ -3,7 +3,7 @@
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any, AnyStr, List
from genericpath import *
from genericpath import * # noqa: F403
curdir = ... # type: Any
pardir = ... # type: Any

View File

@@ -2,4 +2,4 @@
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from sqlite3.dbapi2 import *
from sqlite3.dbapi2 import * # noqa: F403

View File

@@ -2,4 +2,4 @@
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from xml.etree.ElementTree import *
from xml.etree.ElementTree import * # noqa: F403