From 122da1ca3f1291190440611b776cf6dd44016d4a Mon Sep 17 00:00:00 2001 From: Alvaro Caceres Date: Wed, 15 Jun 2016 15:57:55 -0500 Subject: [PATCH] Add Any for collections.pyi --- stdlib/2.7/collections.pyi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stdlib/2.7/collections.pyi b/stdlib/2.7/collections.pyi index 817d81959..9b6bc4d07 100644 --- a/stdlib/2.7/collections.pyi +++ b/stdlib/2.7/collections.pyi @@ -7,8 +7,8 @@ # NOTE: These are incomplete! from typing import ( - Dict, Generic, TypeVar, Iterable, Tuple, Callable, Mapping, overload, Iterator, Sized, - Optional, List, Set, Sequence, Union, Reversible, MutableMapping, MutableSequence + Any, Dict, Generic, TypeVar, Iterable, Tuple, Callable, Mapping, overload, Iterator, + Sized, Optional, List, Set, Sequence, Union, Reversible, MutableMapping, MutableSequence ) import typing