Skip to content
This repository was archived by the owner on Jul 3, 2023. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion typeform/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def get(self, uid: str) -> dict:
"""
return self.__client.request('get', '/forms/%s/messages' % uid)

def update(self, uid: str, data={}) -> str:
def update(self, uid: str, data: dict = {}) -> str:
"""
Specifies new values for the customizable messages in a form (specified by form_id).
You can format messages with bold (*bold*) and italic (_italic_) text. HTML tags are forbidden.
Expand Down