Skip to content

Commit

Permalink
fixed broken commands in use case scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
georgemccabe committed Nov 14, 2024
1 parent c2efe53 commit b1a0d5b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ def main():
plot.write_output_file()
end = perf_counter()
execution_time = end - start
plot.line_logger.info(f"Finished creating line plot, execution time: {execution_time} seconds")
plot.logger.info(f"Finished creating line plot, execution time: {execution_time} seconds")
except ValueError as val_er:
print(val_er)

if __name__ == "__main__":
main()
main()
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def main():
os.remove(existing_output_file)

# Write stat file in ASCII format
stat_lines_obj: WriteStatAscii = WriteStatAscii(settings)
stat_lines_obj: WriteStatAscii = WriteStatAscii(settings, logger)
# stat_lines_obj.write_stat_ascii(file_df, parms, logger)
stat_lines_obj.write_stat_ascii(file_df, settings)

Expand Down

0 comments on commit b1a0d5b

Please sign in to comment.