Skip to content

Commit

Permalink
fix: update workflow type
Browse files Browse the repository at this point in the history
  • Loading branch information
polomani committed Dec 2, 2024
1 parent d7608c2 commit 37608a0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cognite/client/data_classes/workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -635,17 +635,17 @@ class SimulationTaskOutput(WorkflowTaskOutput):
"""
The class represent the output of Simulation execution.
Args:
run_id (int): The run ID of the simulation run.
log_id (int): The log ID of the simulation run.
run_id (int | None): The run ID of the simulation run.
log_id (int | None): The log ID of the simulation run.
status_message (str | None): Status message of the simulation execution.
"""

task_type: ClassVar[str] = "simulation"

def __init__(
self,
run_id: int,
log_id: int,
run_id: int | None,
log_id: int | None,
status_message: str | None,
) -> None:
self.run_id = run_id
Expand Down

0 comments on commit 37608a0

Please sign in to comment.