Closed CGLemon closed 1 year ago
I quickly report the bug here. I may send the pull request tomorrow. My python version is 3.8. Here is a bug for dict in the version.
3.8
TypeError: 'type' object is not subscriptable
The dict should be replaced by typing.Dict in my python version. For example,
dict
typing.Dict
gme: dict[int, GoGame] = dict()
should be
from typing import Dict gme: Dict[int, GoGame] = dict()
Thank you
I quickly report the bug here. I may send the pull request tomorrow. My python version is
3.8
. Here is a bug for dict in the version.The
dict
should be replaced bytyping.Dict
in my python version. For example,should be