From 36e362212c2ac56f0c3a513df800f0e9db8431cf Mon Sep 17 00:00:00 2001 From: Dominik Peters Date: Wed, 4 Jun 2025 21:31:54 +0200 Subject: [PATCH] fix: do not pass default to treemap arg (#604) --- tools/python/score.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/score.py b/tools/python/score.py index 1933e016..cb497145 100644 --- a/tools/python/score.py +++ b/tools/python/score.py @@ -205,7 +205,7 @@ def main(): parser.add_argument("-t", "--top", help="(Optional) Shows the top N files remaining.") parser.add_argument("-a", "--adventure", help="(Optional) Only shows adventure 1 or 2 based on passed in value.", choices=['1', '2']) parser.add_argument("-s", "--summary", help="(Optional) Only prints the percentages for adventure 1 and 2", action='store_true') - parser.add_argument("--treemap", help="(Optional) Generates a treemap .html file", default="progress-treemap.html", metavar="path/to/treemap-file.html") + parser.add_argument("--treemap", help="(Optional) Generates a treemap .html file", metavar="path/to/treemap-file.html") args = parser.parse_args() adventureSelect = 3 # Show both adventures by default if args.adventure != None: