Skip to content

Commit bf7291b

Browse files
committed
removing unecessary f-strings
1 parent 749c057 commit bf7291b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

servicex_analysis_utils/file_peeking.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -196,13 +196,13 @@ def print_structure_from_str(
196196
structure_dict = json.loads(structure_str)
197197

198198
output_lines.append(
199-
f"\n---------------------------\n"
199+
"\n---------------------------\n"
200200
f"\U0001f4c1 Sample: {sample_name}\n"
201-
f"---------------------------"
201+
"---------------------------"
202202
)
203203

204204
# Get the metadata first
205-
output_lines.append(f"\nFile Metadata \u2139\ufe0f :\n")
205+
output_lines.append("\nFile Metadata \u2139\ufe0f :\n")
206206
if "FileMetaData" not in structure_dict:
207207
output_lines.append("No FileMetaData found in dataset.")
208208
else:

0 commit comments

Comments
 (0)