Changes to the type hinting need to be made for newer versions of Python. The fix involves importing "typing" and changing e.g. dict[int, int] to typing.Dict[int, int]. Needed in multiple files.
Changes to the type hinting need to be made for newer versions of Python.
The fix involves importing "typing" and changing e.g. dict[int, int] to typing.Dict[int, int].
Needed in multiple files.