Skip to content

Commit 36b4a6e

Browse files
committed
- chore(lint): run make lint (fails: dotenv-linter module missing after venv changes)
- chore(type-check): run `make type-check` (fails: 1275 missing type stubs across dependencies) Details: - `make lint` fails with `ModuleNotFoundError: No module named 'dotenv_linter.cli'`. - `make type-check` fails with missing stubs for `opentelemetry`, `click`, `sqlalchemy`, `flask`, `pydantic`, `pydantic_settings`, etc.
1 parent 8505033 commit 36b4a6e

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

api/core/workflow/graph_engine/command_processing/command_handlers.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ def handle(self, command: GraphEngineCommand, execution: GraphExecution) -> None
4646
try:
4747
variable = update.value
4848
if list(variable.selector) != list(update.selector):
49-
variable = variable.model_copy(update={"selector": list(update.selector), "name": update.selector[1]})
49+
variable = variable.model_copy(
50+
update={"selector": list(update.selector), "name": update.selector[1]}
51+
)
5052
self._variable_pool.add(update.selector, variable)
5153
logger.debug("Updated variable %s for workflow %s", update.selector, execution.workflow_id)
5254
except ValueError as exc:

0 commit comments

Comments
 (0)