Skip to content

Commit

Permalink
Fix typos in copy_document function
Browse files Browse the repository at this point in the history
  • Loading branch information
willhite committed Feb 5, 2019
1 parent 56c91bc commit cfa97b9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/quip.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,11 +336,11 @@ def copy_document(self, thread_id, folder_ids=None, member_ids=None,

args = {"thread_id": thread_id}
if folder_ids:
args["folder_ids"]: ",".join(folder_ids)
args["folder_ids"] = ",".join(folder_ids)
if member_ids:
args["member_ids"]: ",".join(member_ids)
args["member_ids"] = ",".join(member_ids)
if title:
args["title"]: title
args["title"] = title
if values:
args["values"] = json.dumps(values)
args.update(kwargs)
Expand Down

0 comments on commit cfa97b9

Please sign in to comment.