Skip to content

Commit

Permalink
fixed missing comma in list construction
Browse files Browse the repository at this point in the history
  • Loading branch information
emcf committed Mar 24, 2024
1 parent 1e4faf1 commit 3e7c932
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compress.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def compress_with_ctags(chunk: Chunk, extension: str) -> Chunk:
]
else:
cmd = [
"./ctags" if os.name == 'nt' else "ctags-universal"
"./ctags" if os.name == 'nt' else "ctags-universal",
f"--languages={language}",
"--output-format=json",
"-f", "-",
Expand Down

0 comments on commit 3e7c932

Please sign in to comment.