@@ -58,7 +58,7 @@ def monthly_usage(self) -> dict | None:
58
58
return None
59
59
60
60
def limits (self ) -> dict | None :
61
- """Returns a complete summary of the user account's limits.
61
+ """Return a complete summary of the user account's limits.
62
62
63
63
It is the same information which is available on the account's Limits page. The returned data includes
64
64
the current usage cycle, a summary of the account's limits, and the current usage.
@@ -87,7 +87,7 @@ def update_limits(
87
87
max_monthly_usage_usd : int | None = None ,
88
88
data_retention_days : int | None = None ,
89
89
) -> None :
90
- """Updates the account's limits manageable on your account's Limits page."""
90
+ """Update the account's limits manageable on your account's Limits page."""
91
91
self .http_client .call (
92
92
url = self ._url ('limits' ),
93
93
method = 'PUT' ,
@@ -150,7 +150,7 @@ async def monthly_usage(self) -> dict | None:
150
150
return None
151
151
152
152
async def limits (self ) -> dict | None :
153
- """Returns a complete summary of the user account's limits.
153
+ """Return a complete summary of the user account's limits.
154
154
155
155
It is the same information which is available on the account's Limits page. The returned data includes
156
156
the current usage cycle, a summary of the account's limits, and the current usage.
@@ -179,7 +179,7 @@ async def update_limits(
179
179
max_monthly_usage_usd : int | None = None ,
180
180
data_retention_days : int | None = None ,
181
181
) -> None :
182
- """Updates the account's limits manageable on your account's Limits page."""
182
+ """Update the account's limits manageable on your account's Limits page."""
183
183
await self .http_client .call (
184
184
url = self ._url ('limits' ),
185
185
method = 'PUT' ,
0 commit comments