Skip to content

Commit

Permalink
πŸ› fix(execution): fix time calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
mostypc123 committed Jan 29, 2025
1 parent 781b3f1 commit a70c531
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -1061,7 +1061,7 @@ def OnRunCode(self, event):
return

end_time = time.time()
overall_time = end_time - start_time
overall_time = (end_time - start_time) * 1000

# Start a thread to handle output and execution time
threading.Thread(target=self.HandleExecution, args=(overall_time,), daemon=True).start()
Expand Down

1 comment on commit a70c531

@mostypc123
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i could do this about 3 months ago.
real.

Please sign in to comment.