Skip to content

Commit 3073175

Browse files
committed
temp test fixes
1 parent 859f44a commit 3073175

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test-data/unit/stubgen.test

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3155,7 +3155,8 @@ def f(*args: Union[int, Tuple[int, int]]) -> int:
31553155

31563156

31573157
[out]
3158-
from typing import Tuple, overload
3158+
from typing import Tuple
3159+
from typing_extensions import overload
31593160

31603161
class A:
31613162
@overload
@@ -3514,7 +3515,7 @@ from typing import TypedDict
35143515
X = TypedDict('X', a=int, b=str)
35153516
Y = TypedDict('X', a=int, b=str, total=False)
35163517
[out]
3517-
from typing import TypedDict
3518+
from typing_extensions import TypedDict
35183519

35193520
class X(TypedDict):
35203521
a: int

0 commit comments

Comments
 (0)