Skip to content

Commit 5732a5a

Browse files
committed
change rate_limit_errors property to get_rate_limit_errors mathod
1 parent 6a10710 commit 5732a5a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/apify/apify_storage_client/_apify_storage_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,6 @@ def request_queues(self) -> RequestQueueCollectionClient:
6767
async def purge_on_start(self) -> None:
6868
pass
6969

70-
@property
71-
def rate_limit_errors(self) -> dict[int, int]:
70+
@override
71+
def get_rate_limit_errors(self) -> dict[int, int]: # type: ignore[misc]
7272
return self._apify_client.stats.rate_limit_errors

0 commit comments

Comments
 (0)