Skip to content

Commit 128c252

Browse files
committed
fixing coderabbit
1 parent 5132168 commit 128c252

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

stressTest.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,8 @@ def get_metrics(output_file):
9898
parser.add_argument("--job_path", type=str, required=True, help="Path to the job")
9999
parser.add_argument(
100100
"--get_metrics",
101-
type=bool,
102-
default=False,
103-
help="Set to true to get metrics, does not create new jobs",
101+
action = "store_true",
102+
help="Get metrics without creating new jobs"
104103
)
105104

106105
args = parser.parse_args()
@@ -117,4 +116,4 @@ def get_metrics(output_file):
117116
args.tango_path,
118117
args.job_name,
119118
args.job_path,
120-
)
119+
)

0 commit comments

Comments
 (0)