Open uniqueg opened 6 months ago
Use type hint generics dict and list instead of typing.Dict and typing.List etc. across the entire codebase, as this is supported from Python 3.9 onwards; see PEP 585 for details.
dict
list
typing.Dict
typing.List
Also check if any other changes introduced in Python 3.9 can be usefully applied to the codebase.
Use type hint generics
dict
andlist
instead oftyping.Dict
andtyping.List
etc. across the entire codebase, as this is supported from Python 3.9 onwards; see PEP 585 for details.Also check if any other changes introduced in Python 3.9 can be usefully applied to the codebase.