From 3e7c93270e168bbf21ccb350c9bdc184519e6539 Mon Sep 17 00:00:00 2001 From: Emmett McFaralne Date: Sat, 23 Mar 2024 23:38:14 -0400 Subject: [PATCH] fixed missing comma in list construction --- compress.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compress.py b/compress.py index f9c9262..a488344 100644 --- a/compress.py +++ b/compress.py @@ -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", "-",