From 3a2e85c2b180360c2ef88da539baa6476401fab4 Mon Sep 17 00:00:00 2001 From: Eeshan Garg Date: Sat, 2 Mar 2019 19:12:01 -0330 Subject: [PATCH] zulip: Fix argument name in add/remove reaction example comment. The actual argument is supposed to be named `reaction_type`, not `emoji_type`. --- zulip/zulip/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zulip/zulip/__init__.py b/zulip/zulip/__init__.py index 0cb4a26..cfc0f85 100644 --- a/zulip/zulip/__init__.py +++ b/zulip/zulip/__init__.py @@ -828,7 +828,7 @@ class Client(object): 'message_id': '100', 'emoji_name': 'joy', 'emoji_code': '1f602', - 'emoji_type': 'unicode_emoji' + 'reaction_type': 'unicode_emoji' }) {'result': 'success', 'msg': ''} ''' @@ -847,7 +847,7 @@ class Client(object): 'message_id': '100', 'emoji_name': 'joy', 'emoji_code': '1f602', - 'emoji_type': 'unicode_emoji' + 'reaction_type': 'unicode_emoji' }) {'msg': '', 'result': 'success'} '''