File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -875,16 +875,16 @@ def main(args: Namespace | None = None) -> ArgumentParser:
875
875
}
876
876
try :
877
877
tracer = Tracer (
878
- output = args .outfile ,
879
- functions = args .only_functions ,
880
- max_function_count = args .max_function_count ,
881
- timeout = args .tracer_timeout ,
882
- config_file_path = args .codeflash_config ,
878
+ output = parsed_args .outfile ,
879
+ functions = parsed_args .only_functions ,
880
+ max_function_count = parsed_args .max_function_count ,
881
+ timeout = parsed_args .tracer_timeout ,
882
+ config_file_path = parsed_args .codeflash_config ,
883
883
command = " " .join (sys .argv ),
884
884
)
885
885
tracer .runctx (code , globs , None )
886
886
replay_test_path = tracer .replay_test_file_path
887
- if not args .trace_only and replay_test_path is not None :
887
+ if not parsed_args .trace_only and replay_test_path is not None :
888
888
del tracer
889
889
890
890
from codeflash .cli_cmds .cli import parse_args , process_pyproject_config
You can’t perform that action at this time.
0 commit comments