You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ensure that the example method call given in each docstring contains any required parameters as specified by the API documentation. For example, the update_epic_comment() method:
defupdate_epic_comment(self, epic_id, comment_id, data, **kwargs):
'''Update a specific Comment on an Epic. https://clubhouse.io/api/rest/v3/#Update-Epic-Comment Example: from clubhouse import ClubhouseClient conn = ClubhouseClient(API_KEY) conn.update_epic_comment(123, 5, {'description': 'TEST'}) '''
The text was updated successfully, but these errors were encountered:
Ensure that the example method call given in each docstring contains any required parameters as specified by the API documentation. For example, the
update_epic_comment()
method:The text was updated successfully, but these errors were encountered: