mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 05:15:12 +00:00
8 lines
138 B
Python
8 lines
138 B
Python
import typing
|
|
|
|
if typing.TYPE_CHECKING:
|
|
from collections import defaultdict
|
|
|
|
|
|
def f(x: typing.DefaultDict[str, str]) -> None:
|
|
...
|