Fix formating
This commit is contained in:
parent
c57996e589
commit
409b207bf1
|
@ -162,7 +162,7 @@ class TokenStreamRewriter(object):
|
|||
rop.index = min(prevRop.index, rop.index)
|
||||
rop.last_index = min(prevRop.last_index, rop.last_index)
|
||||
print('New rop {}'.format(rop))
|
||||
elif ( not(isDisjoint) ):
|
||||
elif (not(isDisjoint)):
|
||||
raise ValueError("replace op boundaries of {} overlap with previous {}".format(rop, prevRop))
|
||||
|
||||
# Walk inserts before
|
||||
|
|
|
@ -161,7 +161,7 @@ class TokenStreamRewriter(object):
|
|||
rop.index = min(prevRop.index, rop.index)
|
||||
rop.last_index = min(prevRop.last_index, rop.last_index)
|
||||
print('New rop {}'.format(rop))
|
||||
elif ( not(isDisjoint) ):
|
||||
elif (not(isDisjoint)):
|
||||
raise ValueError("replace op boundaries of {} overlap with previous {}".format(rop, prevRop))
|
||||
|
||||
# Walk inserts
|
||||
|
|
Loading…
Reference in New Issue