Skip to content

Commit 6dd5f0b

Browse files
committed
chore: Remove commented out code for exporting files in handle_recorder.py
1 parent a5c0d13 commit 6dd5f0b

File tree

1 file changed

+0
-21
lines changed

1 file changed

+0
-21
lines changed

drishti/handlers/handle_recorder.py

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -579,30 +579,9 @@ def process_helper(file_map, df_intervals, df_posix_records, fid=None):
579579
display_thresholds(console)
580580
display_footer(console, insights_start_time, insights_end_time)
581581

582-
# if args.split_files:
583-
# filename = '{}.{}.html'.format(args.log_path, fid)
584-
# else:
585-
# filename = '{}.html'.format(args.log_path)
586-
587-
# export_html(console, filename)
588-
589-
# if args.split_files:
590-
# filename = '{}.{}.svg'.format(args.log_path, fid)
591-
# else:
592-
# filename = '{}.svg'.format(args.log_path)
593-
594-
# export_svg(console, filename)
595-
596-
# if args.split_files:
597-
# filename = '{}.{}.summary.csv'.format(args.log_path, fid)
598-
# else:
599-
# filename = '{}-summary.csv'.format(args.log_path)
600-
# export_csv(filename)
601-
602582
# Export to HTML, SVG, and CSV
603583
input_filename = os.path.basename(os.path.dirname(args.log_path))
604584
input_filename = f"{input_filename}.{fid}" if args.split_files else input_filename # Append fid if split_files is enabled
605-
606585
out_dir = args.export_dir if args.export_dir != "" else os.getcwd()
607586

608587
export_html(console, out_dir, input_filename)

0 commit comments

Comments
 (0)