skogsbaer / write-your-python-program

BSD 3-Clause "New" or "Revised" License
1 stars 4 forks source link

Suggestion for Literal wrong #132

Closed skogsbaer closed 2 months ago

skogsbaer commented 11 months ago

If you write Literal('a', 'b') you get the wrong suggestion 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)

skogsbaer commented 2 months ago

Fixed with #136