ruff/crates/ruff_linter/resources/test/fixtures/pyflakes/F811_22.py
2023-09-20 08:38:27 +02:00

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