Skip to content

Commit

Permalink
chore: ruff format (again).
Browse files Browse the repository at this point in the history
  • Loading branch information
rwiker committed Dec 19, 2024
1 parent 430d545 commit 889031b
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/sumo/wrapper/sumo_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -424,9 +424,13 @@ def create_shared_access_key_for_case(self, case_uuid):
def client_for_case(self, case_uuid):
"""Instantiate and return new SumoClient for accessing the
case identified by "case_uuid*."""
return SumoClient(env=self.env, verbosity=self._verbosity,
retry_strategy=self._retry_strategy,
timeout=self._timeout, case_uuid=case_uuid)
return SumoClient(
env=self.env,
verbosity=self._verbosity,
retry_strategy=self._retry_strategy,
timeout=self._timeout,
case_uuid=case_uuid,
)

@raise_for_status_async
async def get_async(self, path: str, params: dict = None):
Expand Down

0 comments on commit 889031b

Please sign in to comment.