Skip to content

Commit 9709405

Browse files
authored
Changed check_all_not_none to return booleans
1 parent 001de01 commit 9709405

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webexteamssdk/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,9 @@ def check_all_not_none(l):
140140
"""
141141
for o in l:
142142
if o is None:
143-
return false
143+
return False
144144

145-
return true
145+
return True
146146

147147

148148
def check_type(o, acceptable_types, may_be_none=True):

0 commit comments

Comments
 (0)