Skip to content

Commit

Permalink
add default None value for navigation action value
Browse files Browse the repository at this point in the history
  • Loading branch information
adeprez committed Oct 1, 2024
1 parent 9bc72fa commit 8b82d76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lavague-sdk/lavague/sdk/action/navigation.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class NavigationCommand(str, Enum):
class NavigationOutput(BaseModel):
navigation_command: NavigationCommand
xpath: str
value: Optional[str]
value: Optional[str] = None


class WebNavigationAction(Action[NavigationOutput]):
Expand Down

0 comments on commit 8b82d76

Please sign in to comment.