From 33b81b9e2b8be2872c689df9c2c0f856d3cce2a5 Mon Sep 17 00:00:00 2001 From: Roy Williams Date: Thu, 24 Nov 2016 03:39:00 -0800 Subject: [PATCH] Add MutableSet to collections (#691) --- stdlib/2/collections.pyi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stdlib/2/collections.pyi b/stdlib/2/collections.pyi index 398d753ce..74fc2a801 100644 --- a/stdlib/2/collections.pyi +++ b/stdlib/2/collections.pyi @@ -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