Skip to content

Commit 7a05b8d

Browse files
fix errors in script runtimes
1 parent 09183a1 commit 7a05b8d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

perfmetrics/scripts/testing_on_gke/examples/dlio/parse_logs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def downloadDlioOutputs(dlioWorkloads):
7777
)
7878
parser.add_argument(
7979
"--workload-config",
80-
description=(
80+
help=(
8181
"A json configuration file to define workloads that were run to"
8282
" generate the outputs that should be parsed."
8383
),

perfmetrics/scripts/testing_on_gke/examples/fio/parse_logs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
# limitations under the License.
1717

1818
import argparse
19-
from collections.abc import Sequence
2019
import json, os, pprint, subprocess
2120
import sys
21+
import fio_workload
2222

2323
sys.path.append("../")
2424
from utils.utils import get_memory, get_cpu, unix_to_timestamp, is_mash_installed
@@ -84,7 +84,7 @@ def downloadFioOutputs(fioWorkloads):
8484
)
8585
parser.add_argument(
8686
"--workload-config",
87-
description=(
87+
help=(
8888
"A json configuration file to define workloads that were run to"
8989
" generate the outputs that should be parsed."
9090
),

0 commit comments

Comments
 (0)