mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
10 lines
174 B
Python
10 lines
174 B
Python
from __future__ import annotations
|
|
|
|
import typing
|
|
|
|
if typing.TYPE_CHECKING:
|
|
from collections import defaultdict
|
|
|
|
|
|
def f(x: typing.DefaultDict[str, str]) -> None:
|
|
...
|