Skip to content

Commit 315246f

Browse files
Remove reveal type
1 parent af1eb7a commit 315246f

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

python/tests/test_deconstruct.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from __future__ import annotations
33

44
from functools import partial
5-
from typing import ClassVar, reveal_type
5+
from typing import ClassVar
66

77
import pytest
88

@@ -31,12 +31,6 @@ def f(x: X) -> X: ...
3131
def y(x: X, i: i64) -> X: ...
3232

3333

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-
4034
c = constant("c", X)
4135

4236
v = var("v", X)

0 commit comments

Comments
 (0)