diff --git a/src/utils/iter.py b/src/utils/iter.py index 3061281c4..7b7e0a39b 100644 --- a/src/utils/iter.py +++ b/src/utils/iter.py @@ -148,8 +148,8 @@ def ilen(iterable): i += 1 return i -def startswith(long, short): - longI = iter(long) +def startswith(long_, short): + longI = iter(long_) shortI = iter(short) try: while True: