Closed judy2k closed 2 years ago
Using list[str] as a type hint isn't supported on Python 3.8 (and possibly 3.9), so I've switched it for List[str] from the typing module.
list[str]
List[str]
typing
This fixes a bug reported in the forums
Using
list[str]
as a type hint isn't supported on Python 3.8 (and possibly 3.9), so I've switched it forList[str]
from thetyping
module.