From 422a0723b4c35502d9f2a06806c86b3ba1f0ce3b Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sat, 6 Nov 2021 21:11:20 -0700 Subject: [PATCH] generate_configuration_table.py: standardize on string with double quoting --- ci/generate_configuration_table.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/generate_configuration_table.py b/ci/generate_configuration_table.py index 2ef1c56eb..c5e43accc 100755 --- a/ci/generate_configuration_table.py +++ b/ci/generate_configuration_table.py @@ -31,7 +31,7 @@ def main(): # pylint: disable=missing-function-docstring parser.add_argument("--output-format", default="JSON", choices=supported_output_formats, help="Set output format.") - parser.add_argument("filename", nargs='*', help="Configuration log to read") + parser.add_argument("filename", nargs="*", help="Configuration log to read") opts = parser.parse_args() -- 2.40.0