Add missing Set imports.

This commit is contained in:
Lukasz Langa
2016-12-21 01:17:55 -08:00
parent c0c982ada5
commit bacd6c0aed
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@
from typing import (
Any, Callable, Dict, Iterable, Tuple, List, TextIO, Sequence,
overload, TypeVar, Pattern
overload, Set, TypeVar, Pattern
)
from abc import abstractmethod, ABCMeta

View File

@@ -2,7 +2,7 @@
from typing import (
Any, Callable, Dict, Iterable, Iterator, List, Optional, Pattern, Sequence,
TextIO, Tuple, Type, TypeVar, Union,
Set, TextIO, Tuple, Type, TypeVar, Union,
overload,
)
import logging