mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-20 02:20:42 +00:00
25 lines
340 B
Python
25 lines
340 B
Python
def f(a: int, b: int) -> int:
|
|
"""Showcase function.
|
|
|
|
Parameters
|
|
----------
|
|
a : int
|
|
_description_
|
|
b : int
|
|
_description_
|
|
Returns
|
|
-------
|
|
int
|
|
_description
|
|
"""
|
|
return b - a
|
|
|
|
|
|
def f() -> int:
|
|
"""Showcase function.
|
|
|
|
Parameters
|
|
----------
|
|
Returns
|
|
-------
|
|
"""
|