Loading cloudcontrol/node/utils.py +2 −2 Original line number Diff line number Diff line Loading @@ -2,12 +2,12 @@ import subprocess from collections import deque def and_(iter): def and_(iter_): """Do an and logic condition over the iterable element. :param iterable iter: meat for condition """ for i in iter: for i in iter_: if not i: return False Loading Loading
cloudcontrol/node/utils.py +2 −2 Original line number Diff line number Diff line Loading @@ -2,12 +2,12 @@ import subprocess from collections import deque def and_(iter): def and_(iter_): """Do an and logic condition over the iterable element. :param iterable iter: meat for condition """ for i in iter: for i in iter_: if not i: return False Loading