We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28a6dc4 commit 1b6406fCopy full SHA for 1b6406f
challenges/intermediate-empty-tuple/question.py
@@ -11,4 +11,4 @@ def foo(x):
11
12
## End of your code ##
13
foo(())
14
-foo((1)) # expect-type-error
+foo((1,)) # expect-type-error
challenges/intermediate-empty-tuple/solution.py
@@ -11,4 +11,4 @@ def foo(x: tuple[()]):
0 commit comments