Skip to content

Commit

Permalink
Merge 0a65a74 into 6b76260
Browse files Browse the repository at this point in the history
  • Loading branch information
hyperair committed Jul 24, 2017
2 parents 6b76260 + 0a65a74 commit 278b820
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hiro/utils.py
Expand Up @@ -13,7 +13,7 @@ def timedelta_to_seconds(delta):
"""
seconds = delta.microseconds
seconds += (delta.seconds + delta.days * 24 * 3600) * 10 ** 6
return seconds / 10 ** 6
return float(seconds) / 10 ** 6



Expand Down

0 comments on commit 278b820

Please sign in to comment.