Skip to content

Commit 3455fe4

Browse files
committed
Formatting
1 parent f675d25 commit 3455fe4

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

projects/rocprofiler-sdk/source/bin/rocprofv3.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -936,8 +936,7 @@ def parse_input(input_file):
936936

937937
_, extension = os.path.splitext(input_file)
938938
if extension == ".txt" or extension == ".text":
939-
warning(
940-
"""
939+
warning("""
941940
Text file format for counter collection is deprecated and will be removed in a future release.
942941
Please use JSON or YAML format instead.
943942
@@ -954,8 +953,7 @@ def parse_input(input_file):
954953
955954
JSON file (recommended):
956955
{"jobs":[{"pmc": ["SQ_WAVES"]},{ "pmc":["GRBM_COUNT"]}]}
957-
"""
958-
)
956+
""")
959957
text_input = parse_text(input_file)
960958
text_input_lst = [{"pmc": itr, "sub_directory": "pmc_"} for itr in text_input]
961959
return [dotdict(itr) for itr in text_input_lst]

0 commit comments

Comments
 (0)