Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9494748

Browse files
committed
Fix test case
1 parent 7d27493 commit 9494748

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test-data/unit/stubgen.test

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,8 +382,10 @@ class A:
382382
def __getstate__(self): ...
383383
def __setstate__(self, state): ...
384384
[out]
385+
from typing import Any
386+
385387
class A:
386-
def __eq__(self) -> None: ...
388+
def __eq__(self) -> Any: ...
387389

388390
-- Tests that will perform runtime imports of modules.
389391
-- Don't use `_import` suffix if there are unquoted forward references.

0 commit comments

Comments
 (0)