Skip to content
This repository has been archived by the owner on Jan 15, 2024. It is now read-only.

Commit

Permalink
cast float to str
Browse files Browse the repository at this point in the history
  • Loading branch information
mtfalls committed Jun 7, 2019
1 parent 2d01adf commit b76a2e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gauntlet_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def check_gauntlet():
time_elapsed = time_now - round_start
current_hour = divmod(time_elapsed.total_seconds(), 60*60)[0]
hours_remain = 45 - current_hour
print("hours_remain: " + hours_remain)
print("hours_remain: " + str(hours_remain))
multiplier = (current_hour * 0.2) + 3.2

# pairwise compare units in battle to detect disadvantages
Expand Down

0 comments on commit b76a2e4

Please sign in to comment.