Skip to content

Commit

Permalink
temp test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
chadrik committed Aug 2, 2023
1 parent 859f44a commit 3073175
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test-data/unit/stubgen.test
Original file line number Diff line number Diff line change
Expand Up @@ -3155,7 +3155,8 @@ def f(*args: Union[int, Tuple[int, int]]) -> int:


[out]
from typing import Tuple, overload
from typing import Tuple
from typing_extensions import overload

class A:
@overload
Expand Down Expand Up @@ -3514,7 +3515,7 @@ from typing import TypedDict
X = TypedDict('X', a=int, b=str)
Y = TypedDict('X', a=int, b=str, total=False)
[out]
from typing import TypedDict
from typing_extensions import TypedDict

class X(TypedDict):
a: int
Expand Down

0 comments on commit 3073175

Please sign in to comment.