Closed divaltor closed 2 years ago
When we have code like
def __init__(self, value: List[str] = None): value = value or []
In this case we get type hint List[str] | list | None which is not valid expression
List[str] | list | None
It's hard to implement, because it's literally a bug from JetBrains IDE itself and I don't want to fix that instead of their developers
When we have code like
In this case we get type hint
List[str] | list | None
which is not valid expression