Skip to content

Commit 4847f30

Browse files
authored
Merge pull request #150 from mallamanis/patch-1
Fix type check in `update`
2 parents a57ff97 + 2185759 commit 4847f30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webexteamssdk/api/rooms.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def update(self, roomId, title, **request_parameters):
233233
234234
"""
235235
check_type(roomId, basestring)
236-
check_type(roomId, basestring)
236+
check_type(title, basestring)
237237

238238
put_data = dict_from_items_with_values(
239239
request_parameters,

0 commit comments

Comments
 (0)