#824 Don't fix tabs in files with no tabs
parent
d48497268e
commit
e7eced3c87
|
|
@ -33,6 +33,10 @@ def convert_tabs_to_spaces(file_path, tab_stop):
|
||||||
with open(file_path, 'r') as file:
|
with open(file_path, 'r') as file:
|
||||||
lines = file.readlines()
|
lines = file.readlines()
|
||||||
|
|
||||||
|
# Skip files with no tabs
|
||||||
|
if not any('\t' in line for line in lines):
|
||||||
|
return
|
||||||
|
|
||||||
new_lines = []
|
new_lines = []
|
||||||
for line in lines:
|
for line in lines:
|
||||||
# Remove trailing spaces
|
# Remove trailing spaces
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue