Skip to content

Commit f29484d

Browse files
committed
format
1 parent 754a8de commit f29484d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

stagehand/handlers/act_handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ async def act(self, options: Union[ActOptions, ObserveResult]) -> ActResult:
9797
variables = options.get("variables", {})
9898
element_to_act_on.arguments = [
9999
str(arg).replace(f"%{key}%", str(value))
100-
for arg in (element_to_act_on.arguments or [])
100+
for arg in element_to_act_on.arguments or []
101101
for key, value in variables.items()
102102
]
103103

0 commit comments

Comments
 (0)