We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
list[int], dict[str, int], etc syntax was introduced in Python 3.9.
list[int]
dict[str, int]
Unless py-version is 3.9+ (or 3.7 with from __future__ import annotations), flag it.
py-version
from __future__ import annotations
https://peps.python.org/pep-0585/