From 201617312318966e3577c1a485383bd980a5d968 Mon Sep 17 00:00:00 2001 From: sigmasternchen Date: Fri, 10 Jan 2025 18:28:56 +0100 Subject: [PATCH] format: Change to consistent use of double-quotes --- grimoiressg/arguments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grimoiressg/arguments.py b/grimoiressg/arguments.py index 22dd6b8..86d74b7 100644 --- a/grimoiressg/arguments.py +++ b/grimoiressg/arguments.py @@ -9,7 +9,7 @@ def parse_arguments_to_initial_context(): The rest of the flags is used to customize the behavior. ''' ) - parser.add_argument("content_file", nargs='+', help="one or more content files") + parser.add_argument("content_file", nargs="+", help="one or more content files") parser.add_argument("-o", "--output", default="./output/", help="the output directory (default: ./output/)") parser.add_argument("-c", "--config", help="the config file to use")