Files
ruff/resources/test/fixtures/S101.py
2022-11-12 12:04:49 -05:00

12 lines
103 B
Python

# Error
assert True
def fn():
x = 1
# Error
assert x == 1
# Error
assert x == 2