format: Change to consistent use of double-quotes

This commit is contained in:
sigmasternchen 2025-01-10 18:28:56 +01:00
parent d7ef7a122a
commit 2016173123

View file

@ -9,7 +9,7 @@ def parse_arguments_to_initial_context():
The rest of the flags is used to customize the behavior. 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("-o", "--output", default="./output/", help="the output directory (default: ./output/)")
parser.add_argument("-c", "--config", help="the config file to use") parser.add_argument("-c", "--config", help="the config file to use")