Skip to content

Commit c6a81ed

Browse files
committed
Fix to follow pattern of using keyword arguments
1 parent 7d22a3f commit c6a81ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

intercom/service/conversation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def __reply(self, reply_data):
7070
response = self.client.post(self.reply_url(_id), reply_data)
7171
return self.collection_class().from_response(response)
7272

73-
def add_customer_to_conversation(self, data):
73+
def add_customer_to_conversation(self, **data):
7474
"""Add a customer to a conversation."""
7575
_id = data.pop('id')
7676
response = self.client.post(self.customers_url(_id), data)

0 commit comments

Comments
 (0)