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

19 lines
317 B
Python

def func_all_spaces():
# No error
print("spaces")
def func_tabs():
# No error
print("tabs")
def func_mixed_start_with_tab():
# E101
print("mixed starts with tab")
def func_mixed_start_with_space():
# E101
print("mixed starts with space")
def xyz():
# E101
print("xyz");