Skip to content

Commit 7853c26

Browse files
author
Lukasz Langa
committed
Add missing Dict, List, Set, Tuple imports.
1 parent 25a46f4 commit 7853c26

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

third_party/3.6/click/core.pyi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ from typing import (
99
Mapping,
1010
Optional,
1111
Sequence,
12+
Set,
1213
Tuple,
1314
TypeVar,
1415
Union,

third_party/3.6/click/formatting.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from contextlib import contextmanager
2-
from typing import Generator, Iterable, Optional, Tuple
2+
from typing import Generator, Iterable, List, Optional, Tuple
33

44

55
FORCED_WIDTH: Optional[int]

third_party/3.6/click/parser.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from typing import Any, Iterable, List, Optional, Tuple
1+
from typing import Any, Dict, Iterable, List, Optional, Set, Tuple
22

33
from click.core import Context
44

third_party/3.6/click/types.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from typing import Any, Callable, IO, Iterable, Optional, TypeVar, Union
1+
from typing import Any, Callable, IO, Iterable, List, Optional, TypeVar, Union
22
import uuid
33

44
from click.core import Context, Parameter

third_party/3.6/click/utils.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from typing import Any, Callable, Iterator, IO, Optional, TypeVar, Union
1+
from typing import Any, Callable, Iterator, IO, List, Optional, TypeVar, Union
22

33

44
T = TypeVar('T')

0 commit comments

Comments
 (0)