All checks were successful
continuous-integration/drone/push Build is passing
Fixes #65 ```python def test_specific_precise_if_unncessary(self): delta = timedelta(hours=2, minutes=40) result = format_duration(delta, "%02.0H:%02.0m") self.assertEqual(result, "02:40") ``` This test fails by returning "03:40" instead. The problem is in the way `format_duration` handles fractional hours. To fix it, we need to switch between using hours and fractional hours depending on if minutes are present in the formatted string.
Timetracker
A simple game catalogue and play session tracker.
Description
Languages
Python
42.4%
HTML
29.9%
CSS
22.6%
JavaScript
3.5%
Dockerfile
0.6%
Other
0.9%