ruff/crates/ruff_linter/resources/test/fixtures/pyupgrade/UP006_2.py
2023-09-20 08:38:27 +02:00

8 lines
138 B
Python

import typing
if typing.TYPE_CHECKING:
from collections import defaultdict
def f(x: typing.DefaultDict[str, str]) -> None:
...