From 41a1ca82611560a3e3d0c03027b06044cbeb811e Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Fri, 7 Apr 2023 21:28:51 +0200 Subject: [PATCH] Properly add the parameters to the function --- emblematic/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emblematic/__main__.py b/emblematic/__main__.py index 4f85599..4c19dd6 100644 --- a/emblematic/__main__.py +++ b/emblematic/__main__.py @@ -56,7 +56,7 @@ def main(): default=2000, help="The height the output files should have." ) -def basic(bg_file, icon_paths, icon_fill, output_dir): +def basic(bg_file, icon_paths, icon_fill, output_dir, width, height): icon_paths = map(pathlib.Path, icon_paths) icon_paths = map(get_svgs, icon_paths) icon_paths = sum(icon_paths, start=[])