Skip to content

Commit

Permalink
Fix #127
Browse files Browse the repository at this point in the history
  • Loading branch information
laike9m committed Nov 6, 2024
1 parent 28a6dc4 commit 1b6406f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion challenges/intermediate-empty-tuple/question.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ def foo(x):

## End of your code ##
foo(())
foo((1)) # expect-type-error
foo((1,)) # expect-type-error
2 changes: 1 addition & 1 deletion challenges/intermediate-empty-tuple/solution.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ def foo(x: tuple[()]):

## End of your code ##
foo(())
foo((1)) # expect-type-error
foo((1,)) # expect-type-error

0 comments on commit 1b6406f

Please sign in to comment.