Skip to content

Commit e775d43

Browse files
authored
Merge pull request #15 from Zwork101/patch-1
Fix windows bug when using pytailwindcss.run directly
2 parents c5102da + 791493f commit e775d43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pytailwindcss/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def make_subprocess_run_kwargs(cwd=None, env=None, live_output=False):
99
"""
1010
opts = {
1111
"cwd": cwd or os.getcwd(),
12-
"env": env or {},
12+
"env": env or None,
1313
}
1414
if live_output is False:
1515
opts.update(

0 commit comments

Comments
 (0)