Skip to content

Commit 6363fdc

Browse files
committed
drop an output_type that was never read
1 parent a576413 commit 6363fdc

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

swarms/structs/batched_grid_workflow.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
batched_grid_agent_execution,
88
)
99
from swarms.structs.omni_agent_types import AgentType
10-
from swarms.utils.output_types import OutputType
1110
from swarms.telemetry.otel import capture_init, trace_run
1211
from swarms.utils.generate_id import generate_id
1312

@@ -32,7 +31,6 @@ class BatchedGridWorkflow:
3231
description (str): Description of the workflow's purpose.
3332
agents (List[AgentType]): List of agents to execute tasks.
3433
max_loops (int): Maximum number of execution loops to perform.
35-
output_type (OutputType): Type of output to return.
3634
3735
Example:
3836
>>> from swarms.structs.batched_grid_workflow import BatchedGridWorkflow
@@ -51,7 +49,6 @@ def __init__(
5149
description: str = "For every agent, run the task on a different task",
5250
agents: List[AgentType] = None,
5351
max_loops: int = 1,
54-
output_type: OutputType = "dict",
5552
):
5653
"""
5754
Initialize a BatchedGridWorkflow instance.

0 commit comments

Comments
 (0)