Closed JSAbrahams closed 2 years ago
Type unions are ignored.
from typing import union a: Union[int, str] = 10
should be imported into the context as a variable a with a union of Int and String.
a
Int
String
Identify type unions and use these when importing Python files.
This has been implemented
Current Issue
Type unions are ignored.
High-level description of the features
should be imported into the context as a variable
a
with a union ofInt
andString
.Description of potential implementation
Identify type unions and use these when importing Python files.