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 0a86628 commit c86b138Copy full SHA for c86b138
1 file changed
src/humanize/time.py
@@ -6,6 +6,7 @@
6
"""
7
from __future__ import annotations
8
9
+import collections.abc
10
import datetime as dt
11
import math
12
import typing
@@ -295,7 +296,7 @@ def _quotient_and_remainder(
295
296
divisor: int | float,
297
unit: Unit,
298
minimum_unit: Unit,
- suppress: typing.Iterable[Unit],
299
+ suppress: collections.abc.Iterable[Unit],
300
) -> tuple[float, float]:
301
"""Divide `value` by `divisor` returning the quotient and remainder.
302
0 commit comments