Skip to content

Commit 1b6406f

Browse files
committed
Fix #127
1 parent 28a6dc4 commit 1b6406f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

challenges/intermediate-empty-tuple/question.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ def foo(x):
1111

1212
## End of your code ##
1313
foo(())
14-
foo((1)) # expect-type-error
14+
foo((1,)) # expect-type-error

challenges/intermediate-empty-tuple/solution.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ def foo(x: tuple[()]):
1111

1212
## End of your code ##
1313
foo(())
14-
foo((1)) # expect-type-error
14+
foo((1,)) # expect-type-error

0 commit comments

Comments
 (0)