basedmypy icon indicating copy to clipboard operation
basedmypy copied to clipboard

conditional moments don't become unions

Open KotlinIsland opened this issue 1 year ago • 0 comments

a = [1] if bool() else [""] # fail
b = [1] or [""]# fail

this should be list[int] | list[str] but, it's epic fail instead

KotlinIsland avatar Sep 13 '24 02:09 KotlinIsland