Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9f63a62

Browse files
committed
PUT /user/forms method description fixed
1 parent 2c52918 commit 9f63a62

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

jotform.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -517,12 +517,12 @@ def create_form(self, form):
517517
""" Create a new form
518518
519519
Args:
520-
form (json): Questions, properties and emails of new form.
520+
form (array): Questions, properties and emails of new form.
521521
522522
Returns:
523523
New form.
524524
"""
525-
525+
526526
params = {}
527527

528528
for key in form.keys():
@@ -539,13 +539,13 @@ def create_form(self, form):
539539
return self.fetch_url('/user/forms', params, 'POST')
540540

541541
def create_forms(self, form):
542-
""" Create a new form
542+
""" Create new forms
543543
544544
Args:
545-
form (json): Questions, properties and emails of new form.
545+
form (json): Questions, properties and emails of forms.
546546
547547
Returns:
548-
New form.
548+
New forms.
549549
"""
550550

551551
return self.fetch_url('/user/forms', form, 'PUT')

0 commit comments

Comments
 (0)