Fix imports

This commit is contained in:
Sidharth Kapur
2016-02-22 17:44:07 -06:00
parent 241e741ef2
commit 8b428ce2ff

View File

@@ -3,7 +3,7 @@
# NOTE: These are incomplete!
from abc import ABCMeta, abstractmethod
from typing import Any, Callable, Generic, Dict, Iterator, Optional, Sequence, Tuple, TypeVar, NamedTuple, overload
from typing import Any, Callable, Generic, Dict, Iterable, Optional, Sequence, Tuple, TypeVar, NamedTuple, overload
from collections import namedtuple
_AnyCallable = Callable[..., Any]