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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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)