mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-04 23:50:57 +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"
|