@@ -58,7 +58,7 @@ def monthly_usage(self) -> dict | None:
5858 return None
5959
6060 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.
6262
6363 It is the same information which is available on the account's Limits page. The returned data includes
6464 the current usage cycle, a summary of the account's limits, and the current usage.
@@ -87,7 +87,7 @@ def update_limits(
8787 max_monthly_usage_usd : int | None = None ,
8888 data_retention_days : int | None = None ,
8989 ) -> 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."""
9191 self .http_client .call (
9292 url = self ._url ('limits' ),
9393 method = 'PUT' ,
@@ -150,7 +150,7 @@ async def monthly_usage(self) -> dict | None:
150150 return None
151151
152152 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.
154154
155155 It is the same information which is available on the account's Limits page. The returned data includes
156156 the current usage cycle, a summary of the account's limits, and the current usage.
@@ -179,7 +179,7 @@ async def update_limits(
179179 max_monthly_usage_usd : int | None = None ,
180180 data_retention_days : int | None = None ,
181181 ) -> 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."""
183183 await self .http_client .call (
184184 url = self ._url ('limits' ),
185185 method = 'PUT' ,
0 commit comments