Skip to content

Commit

Permalink
changed to forms being the hook
Browse files Browse the repository at this point in the history
  • Loading branch information
jkmin3 committed Mar 29, 2024
1 parent faf307b commit 3628dd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ai_ta_backend/flows.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def get_users(self, limit: int = 50, pagination: bool = True, api_key: str = "")

return all_users

def execute_flow(self, hook: str, data={'field-0': ''}) -> None:
def execute_flow(self, hook: str, data=None) -> None:
if not data:
data = {'field-0': ''}
url = hook
Expand Down

0 comments on commit 3628dd0

Please sign in to comment.