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

8 lines
140 B
Python

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