actions
actions copied to clipboard
Action server does not seem to be linting actions with parameters properly
What is wrong
When starting the action server with an action with the contents below the linting doesn't really happen as it should.
from sema4ai.actions import action
@action(is_consequential=True)
def add_row(
sheet_name: str
) -> str:
return 'ok'
System info
Windows, Action Server 0.16.1
Example script
No response