Skip to content

Commit

Permalink
Add missing Dict, List, Set, Tuple imports.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukasz Langa committed Dec 23, 2016
1 parent 25a46f4 commit 7853c26
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions third_party/3.6/click/core.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ from typing import (
Mapping,
Optional,
Sequence,
Set,
Tuple,
TypeVar,
Union,
Expand Down
2 changes: 1 addition & 1 deletion third_party/3.6/click/formatting.pyi
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from contextlib import contextmanager
from typing import Generator, Iterable, Optional, Tuple
from typing import Generator, Iterable, List, Optional, Tuple


FORCED_WIDTH: Optional[int]
Expand Down
2 changes: 1 addition & 1 deletion third_party/3.6/click/parser.pyi
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import Any, Iterable, List, Optional, Tuple
from typing import Any, Dict, Iterable, List, Optional, Set, Tuple

from click.core import Context

Expand Down
2 changes: 1 addition & 1 deletion third_party/3.6/click/types.pyi
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import Any, Callable, IO, Iterable, Optional, TypeVar, Union
from typing import Any, Callable, IO, Iterable, List, Optional, TypeVar, Union
import uuid

from click.core import Context, Parameter
Expand Down
2 changes: 1 addition & 1 deletion third_party/3.6/click/utils.pyi
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import Any, Callable, Iterator, IO, Optional, TypeVar, Union
from typing import Any, Callable, Iterator, IO, List, Optional, TypeVar, Union


T = TypeVar('T')
Expand Down

0 comments on commit 7853c26

Please sign in to comment.