Skip to content

Commit ce2ef37

Browse files
committed
Refactor: fix parameter name in execute method and correct exception handling call in AGENTS.md
1 parent d3d9bda commit ce2ef37

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

AGENTS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,10 +135,10 @@ async def start(
135135
```python
136136
async def execute(self, input_data: Optional[dict[str, Any]] = None) -> Any:
137137
try:
138-
result = await self.current_node.execute(item)
138+
result = await self.current_node.execute(input_data)
139139
return result
140140
except Exception as exc:
141-
await self.exception(exc, execution)
141+
await exception(exc, execution)
142142
return None
143143
```
144144

0 commit comments

Comments
 (0)