We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68678bc commit daf9cd7Copy full SHA for daf9cd7
sc2reader/utils.py
@@ -252,12 +252,12 @@ class Length(timedelta):
252
@property
253
def hours(self):
254
""" The number of hours in represented. """
255
- return int(self.seconds/3600)
+ return self.seconds//3600
256
257
258
def mins(self):
259
""" The number of minutes in excess of the hours. """
260
- return int(self.seconds/60) % 60
+ return self.seconds//60 % 60
261
262
263
def secs(self):
0 commit comments