mirror of
https://github.com/astral-sh/ruff.git
synced 2025-11-11 16:34:27 +00:00
11 lines
133 B
Python
11 lines
133 B
Python
def func():
|
|
assert True
|
|
|
|
def func():
|
|
assert False
|
|
|
|
def func():
|
|
assert True, "oops"
|
|
|
|
def func():
|
|
assert False, "oops"
|