From 199f1fc14fa187316114a0ca42d74e2de6ce349b Mon Sep 17 00:00:00 2001 From: Joshua Chapman Date: Mon, 17 Jun 2024 20:13:48 +0200 Subject: [PATCH] fix(cli): templating arguments getops The `templating` CLI parameter requires an argument for the template to use, but this cannot be passed since the `getops` definition is missing the `=` sign. --- python/jsbeautifier/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/jsbeautifier/__init__.py b/python/jsbeautifier/__init__.py index a835edea4..014735843 100644 --- a/python/jsbeautifier/__init__.py +++ b/python/jsbeautifier/__init__.py @@ -190,7 +190,7 @@ def main(): "space-in-empty-paren", "space-in-paren", "stdin", - "templating", + "templating=", "unescape-strings", "usage", "version",