Skip to content

Commit 2bbec9a

Browse files
committed
Fixing #14 encoding
1 parent 0800f96 commit 2bbec9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

servicex_analysis_utils/file_peeking.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ def print_structure_from_str(
192192
continue
193193
output_lines.append(f" │ ├── {branch_name} ; dtype: {dtype}")
194194

195-
result_str = "\n".join(output_lines)
195+
result_str = "\n".join(output_lines).encode("utf-8").decode("utf-8")
196196

197197
if save_to_txt:
198198
with open("samples_structure.txt", "w") as f:

0 commit comments

Comments
 (0)