"""Dummy throttling.""" from typing import TYPE_CHECKING from .base import BaseThrottler if TYPE_CHECKING: from ..client.base import BaseExtendedClient __all__ = ["DummyThrottler"] class DummyThrottler(BaseThrottler): """Dummy throttler.""" def _get_sleep_time(self, client: "BaseExtendedClient") -> float: return 0