We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25d8dde commit d16c8ccCopy full SHA for d16c8cc
conformance/tests/typeforms_typeform.py
@@ -56,13 +56,11 @@
56
bad2: TypeForm = (1, 2) # E
57
bad3: TypeForm = 1 # E
58
bad4: TypeForm = Self # E
59
-bad5: TypeForm = Literal[var] # E
60
-bad6: TypeForm = Literal[f""] # E
61
-bad7: TypeForm = ClassVar[int] # E
62
-bad8: TypeForm = Final[int] # E
63
-bad9: TypeForm = Unpack[Ts] # E
64
-bad10: TypeForm = Optional # E
65
-bad11: TypeForm = "int + str" # E
+bad5: TypeForm = ClassVar[int] # E
+bad6: TypeForm = Final[int] # E
+bad7: TypeForm = Unpack[Ts] # E
+bad8: TypeForm = Optional # E
+bad9: TypeForm = "int + str" # E
66
67
68
# > ``TypeForm`` acts as a function that can be called with a single valid type expression.
0 commit comments