Trivial removal of leftover

This commit is contained in:
Miroslav Stampar
2019-08-04 01:05:28 +02:00
parent a42a7c88bd
commit 1824e5b094
2 changed files with 1 additions and 2 deletions

View File

@@ -4881,7 +4881,6 @@ def zeroDepthSearch(expression, value):
elif expression[index] == ')':
depth -= 1
elif depth == 0:
found = False
if value.startswith('[') and value.endswith(']'):
if re.search(value, expression[index:index + 1]):
retVal.append(index)