PEP E225 with a nod to Deepcommit

This commit is contained in:
rocky
2019-04-14 06:11:16 -04:00
parent 400943bb6a
commit 9b550b9dda
21 changed files with 36 additions and 36 deletions

View File

@@ -1179,7 +1179,7 @@ class Scanner2(Scanner):
Return a list with indexes to them or [] if none found.
"""
assert(start>=0 and end<=len(self.code) and start <= end)
assert(start >= 0 and end <= len(self.code) and start <= end)
try: None in instr
except: instr = [instr]