mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-04 03:30:15 +00:00
fix a typo inside the InvalidWorkflowParameter error (#1029)
This commit is contained in:
parent
0e3da8d1d3
commit
51a531df09
1 changed files with 1 additions and 1 deletions
|
@ -514,7 +514,7 @@ class BlockedHost(SkyvernHTTPException):
|
|||
|
||||
class InvalidWorkflowParameter(SkyvernHTTPException):
|
||||
def __init__(self, expected_parameter_type: str, value: str, workflow_permanent_id: str | None = None) -> None:
|
||||
message = f"Invalid workflow parameter. Excpected parameter type: {expected_parameter_type}. Value: {value}."
|
||||
message = f"Invalid workflow parameter. Expected parameter type: {expected_parameter_type}. Value: {value}."
|
||||
if workflow_permanent_id:
|
||||
message += f" Workflow permanent id: {workflow_permanent_id}"
|
||||
super().__init__(
|
||||
|
|
Loading…
Add table
Reference in a new issue