pint/tools/csstosort.py

12 lines
305 B
Python
Raw Normal View History

2022-07-22 05:48:00 +00:00
with open("formatted.txt", "a") as f:
x = open("colors.txt", "r")
prev_line = ""
2022-07-21 05:50:52 +00:00
2022-07-22 05:47:59 +00:00
for current_line in x:
if prev_line.split("=>")[0].strip() != current_line.split("=>")[0].strip():
2022-07-22 05:48:00 +00:00
f.write("\n")
2022-07-22 05:47:59 +00:00
f.write(current_line)
prev_line = current_line
2022-07-21 05:50:52 +00:00
2022-07-22 05:47:59 +00:00
x.close()