mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
19 lines
317 B
Python
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");
|