JameStitel

Results 1 comments of JameStitel

I have managed to do so by modifying the `RateLimiter` class: ``` class CustomRateLimiter(RateLimiter): def __hash__(self) -> int: return hash(f"limiter-{hash(self.CUSTOM_ID_VALUE)}") def __eq__(self, other: object) -> bool: if isinstance(other, CustomRateLimiter): return...