Commit 166a9e61 authored by Anael Beutot's avatar Anael Beutot
Browse files

Fix std variable name.

parent f233145b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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