Skip to content

Commit

Permalink
Style: reformat code with [email protected]
Browse files Browse the repository at this point in the history
  • Loading branch information
aybruhm committed May 23, 2024
1 parent 4f39e4a commit 6645123
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
6 changes: 3 additions & 3 deletions agenta-backend/agenta_backend/services/llm_apps_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,9 @@ async def batch_invoke(
"delay_between_batches"
] # Delay between batches (in seconds)

list_of_app_outputs: List[InvokationResult] = (
[]
) # Outputs after running all batches
list_of_app_outputs: List[
InvokationResult
] = [] # Outputs after running all batches
openapi_parameters = await get_parameters_from_openapi(uri + "/openapi.json")

async def run_batch(start_idx: int):
Expand Down
9 changes: 6 additions & 3 deletions agenta-cli/agenta/sdk/tracing/context_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@


class TracingContextManager:
def __init__(self, tracing: Tracing): ...
def __init__(self, tracing: Tracing):
...

def __enter__(self): ...
def __enter__(self):
...

def __exit__(self, exc_type, exc_val, exc_tb): ...
def __exit__(self, exc_type, exc_val, exc_tb):
...

0 comments on commit 6645123

Please sign in to comment.