mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
13 lines
No EOL
196 B
Python
13 lines
No EOL
196 B
Python
def redef(value):
|
|
match value:
|
|
case True:
|
|
|
|
def fun(x, y):
|
|
return x
|
|
|
|
case False:
|
|
|
|
def fun(x, y):
|
|
return y
|
|
|
|
return fun |