Add MutableSet to collections (#691)

This commit is contained in:
Roy Williams
2016-11-24 03:39:00 -08:00
committed by Jukka Lehtosalo
parent b9733f5717
commit 33b81b9e2b

View File

@@ -7,9 +7,9 @@
# NOTE: These are incomplete!
from typing import (
Any, Dict, Generic, TypeVar, Iterable, Tuple, Callable, Mapping, overload, Iterator, Type,
Sized, Optional, List, Set, Sequence, Union, Reversible, MutableMapping, MutableSequence,
Container
Any, Container, Dict, Generic, TypeVar, Iterable, Tuple, Callable, Mapping, overload,
Iterator, Type, Sized, Optional, List, Set, Sequence, Union, Reversible,
MutableMapping, MutableSet, MutableSequence,
)
import typing