Fix Flake8

This commit is contained in:
Roman Mogylatov 2020-09-18 21:54:30 -04:00
parent 6bffd9b7b0
commit 25e5ed62a2

View File

@ -2,20 +2,13 @@
import functools
import inspect
import sys
import pkgutil
from types import ModuleType
from typing import Optional, Iterable, Callable, Any, Type, Dict, Generic, TypeVar
# Spike for Python 3.6
# if sys.version_info < (3, 7):
# from typing import GenericMeta
# else:
# class GenericMeta(type):
# ...
from . import providers
AnyContainer = Any
T = TypeVar('T')