Skip to content

Commit 2185759

Browse files
authored
Fix type check
1 parent 49a0a0d commit 2185759

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)