Skip to content

Commit 1452a48

Browse files
TristanCacquerayStephenSorriaux
authored andcommitted
fix(client): add missing paren (#550)
1 parent 4242da8 commit 1452a48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kazoo/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1224,7 +1224,7 @@ def set_acls_async(self, path, acls, version=-1):
12241224
raise TypeError("Invalid type for 'path' (string expected)")
12251225
if isinstance(acls, ACL) or not isinstance(acls, (tuple, list)):
12261226
raise TypeError("Invalid type for 'acl' (acl must be a tuple/list"
1227-
" of ACL's")
1227+
" of ACL's)")
12281228
if not isinstance(version, int):
12291229
raise TypeError("Invalid type for 'version' (int expected)")
12301230

0 commit comments

Comments
 (0)