We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af1eb7a commit 315246fCopy full SHA for 315246f
1 file changed
python/tests/test_deconstruct.py
@@ -2,7 +2,7 @@
2
from __future__ import annotations
3
4
from functools import partial
5
-from typing import ClassVar, reveal_type
+from typing import ClassVar
6
7
import pytest
8
@@ -31,12 +31,6 @@ def f(x: X) -> X: ...
31
def y(x: X, i: i64) -> X: ...
32
33
34
-reveal_type(get_callable_args(X(), y))
35
-match get_callable_args(X(), y):
36
- case (x, i):
37
- reveal_type(x)
38
- reveal_type(i)
39
-
40
c = constant("c", X)
41
42
v = var("v", X)
0 commit comments