Skip to content

Commit

Permalink
method for adding usage limits to orgs
Browse files Browse the repository at this point in the history
  • Loading branch information
hhuuggoo committed Dec 5, 2024
1 parent 08922b1 commit 8ad814e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions saturn_client/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from json import JSONDecodeError
import logging
import datetime as dt
from dataclasses import dataclass, field, asdict
from dataclasses import dataclass, asdict
from functools import reduce
from os.path import join
from tempfile import TemporaryDirectory
Expand Down Expand Up @@ -355,7 +355,7 @@ def patch_usage_limit(self, limits_id: str, limit: UsageLimitPatch) -> UsageLimi

def delete_usage_limit(self, limits_id: str) -> None:
path = f"/api/limits/{limits_id}"
result = execute_request(
execute_request(
self.session, self.settings.BASE_URL, path, method="DELETE", parse_response=False
)

Expand Down

0 comments on commit 8ad814e

Please sign in to comment.