Skip to content

Commit 7bfe66a

Browse files
committed
Fixes
1 parent 585d425 commit 7bfe66a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Version 0.4.6 - 2025-11-14
3+
## Version 0.4.7 - 2025-11-14
44

55
- Add create_action_run method
66

src/cradl/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3311,11 +3311,11 @@ def create_action_run(
33113311
self,
33123312
action_id: str,
33133313
*,
3314-
agent_run_id: str = None,
3314+
agent_run_id: Optional[str] = None,
33153315
input: Optional[dict] = None,
33163316
metadata: Optional[dict] = None,
33173317
) -> Dict:
3318-
"""Create action run, calls the POST /actions/{actionId}/runs/{runId} endpoint.
3318+
"""Create action run, calls the POST /actions/{actionId}/runs/ endpoint.
33193319
33203320
:param action_id: Id of the action
33213321
:type action_id: str

0 commit comments

Comments
 (0)