mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-28 21:05:08 +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"
|