mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-02 22:55:08 +00:00
12 lines
125 B
Python
12 lines
125 B
Python
from typing import List
|
|
|
|
|
|
def f(x: List[str]) -> None:
|
|
...
|
|
|
|
|
|
import typing
|
|
|
|
|
|
def f(x: typing.List[str]) -> None:
|
|
...
|