mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-10 15:35:51 +00:00
add wati block (#1254)
This commit is contained in:
parent
303153b305
commit
284fba0aba
5 changed files with 60 additions and 0 deletions
|
@ -114,3 +114,8 @@ class FailedToParseActionInstruction(SkyvernException):
|
|||
super().__init__(
|
||||
f"Failed to parse the action instruction as '{reason}({error_type})'",
|
||||
)
|
||||
|
||||
|
||||
class InvalidWaitBlockTime(SkyvernException):
|
||||
def __init__(self, max_sec: int):
|
||||
super().__init__(f"Invalid wait time for wait block, it should be a number between 0 and {max_sec}.")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue