mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-02 14:52:01 +00:00
10 lines
159 B
Python
10 lines
159 B
Python
def foo(x: int, y: int, x: int) -> None:
|
|
pass
|
|
|
|
|
|
def bar(x: int, y: int, *, x: int) -> None:
|
|
pass
|
|
|
|
|
|
def baz(x: int, y: int, **x: int) -> None:
|
|
pass
|