Skip to content

Commit

Permalink
bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Sanjaypranav committed Nov 3, 2023
1 parent 1dd47c5 commit 513378e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sayvai_tools/tools/forms/tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@


class FormTool:
def __init__(self, scope: str, title: str = "Test Form""):
def __init__(self, scope: str, title: str = "Test Form"):
self.scope = scope
self.form = GForms(formTitle=title)

name = "Form Tool"
description = "Tool for forms"

def _run(self, questions: List[str]t):
def _run(self, questions: List[str]):
self.form.add_multiple_questions(questions=questions)
return "Questions have been added"

Expand Down

0 comments on commit 513378e

Please sign in to comment.