Closed skogsbaer closed 2 months ago
If you write Literal('a', 'b') you get the wrong suggestion Did you mean Literal[a, b]
Literal('a', 'b')
Did you mean Literal[a, b]
If you write T(a, b), where T is defined as a literal, you get the wrong suggestion Did you mean Literal(a, b)
T(a, b)
T
Did you mean Literal(a, b)
Fixed with #136
If you write
Literal('a', 'b')
you get the wrong suggestionDid you mean Literal[a, b]
If you write
T(a, b)
, whereT
is defined as a literal, you get the wrong suggestionDid you mean Literal(a, b)