timetracker/common
Lukáš Kucharczyk 3b37f2c3f0
continuous-integration/drone/push Build is passing Details
Fix edge case in format_duration
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.
2023-11-10 20:07:41 +01:00
..
__init__.py Rename project, part 2 (#42) 2023-01-20 13:37:46 +00:00
import_data.py Rename project, part 2 (#42) 2023-01-20 13:37:46 +00:00
input.css Switch fonts to WOFF2 2023-10-01 19:53:07 +02:00
time.py Fix edge case in format_duration 2023-11-10 20:07:41 +01:00
utils.py Use safe_division in more places 2023-11-09 10:06:14 +01:00