mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-04 02:38:25 +00:00
19 lines
198 B
Python
19 lines
198 B
Python
def f(x):
|
|
if x:
|
|
pass
|
|
|
|
|
|
def g(x):
|
|
if x:
|
|
pass
|
|
else:
|
|
pass
|
|
|
|
def h(x):
|
|
return
|
|
|
|
def i(x):
|
|
if x:
|
|
pass
|
|
else:
|
|
pass
|