Skip to content

Commit

Permalink
round timeInMinutes to 2 decimals
Browse files Browse the repository at this point in the history
  • Loading branch information
bitsgalore committed Oct 19, 2017
1 parent 261810f commit e6175d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jprofile/jprofile.py
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ def main():

# Elapsed time (seconds)
timeElapsed = end - start
timeInMinutes = timeElapsed / 60
timeInMinutes = round((timeElapsed / 60), 2)

print("Elapsed time: " + str(timeInMinutes) + " minutes")

Expand Down

0 comments on commit e6175d1

Please sign in to comment.