zulip / python-zulip-api

Python library for the Zulip API.
https://zulip.com/api/
Apache License 2.0
359 stars 361 forks source link

api: Refactor 'update_user_group_members' to take user_group_id outside group_data. #618

Closed akashaviator closed 4 years ago

akashaviator commented 4 years ago

This modifies update_user_group_members to replace :

client.update_user_group_members(group_data)

with

client.update_user_group_members(user_group_id, group_data).

timabbott commented 4 years ago

Merged as 1df19c06654da539b446e69e875a0a4acf45c0d2 after changing the example to pass the group ID positionally. Thanks @akashaviator!