Skip to content

Commit 33fa54c

Browse files
committed
🐛 FIX: to agree with end-of-file-fixer
1 parent b1bb639 commit 33fa54c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

scss_compile/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,10 @@ def run_compile(
223223
)
224224
continue
225225

226+
# fix to agree with end-of-file-fixer
227+
css_str = css_str.rstrip() + "\n"
228+
sourcemap_str = sourcemap_str.rstrip() + "\n"
229+
226230
if not test_run:
227231
out_dir.mkdir(exist_ok=True, parents=True)
228232

0 commit comments

Comments
 (0)