From a239ecc7e02b10d6cdbfef930e1fbc3690a8e1ef Mon Sep 17 00:00:00 2001 From: sozud <122322823+sozud@users.noreply.github.com> Date: Wed, 2 Oct 2024 21:34:09 -0700 Subject: [PATCH] Fix argument? --- tools/analyze_calls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/analyze_calls.py b/tools/analyze_calls.py index 068a4b5ec..662f229f2 100755 --- a/tools/analyze_calls.py +++ b/tools/analyze_calls.py @@ -34,7 +34,7 @@ parser.add_argument( ) parser.add_argument( "--output_dir", - action="store_true", + type=str, # Expecting a string as input help="Output directory", ) output_dir = "function_calls"