Compare commits

..

1 commit

Author SHA1 Message Date
2922ceac3d change loop format 2020-11-10 19:47:56 -05:00

View file

@ -119,7 +119,7 @@ def pat(index, tick, previous_values):
this.values['index'] = index
if this.pattern != None:
i = 0
while i < len(this.pattern):
while i < range(len(this.pattern)):
if i < len(this.pattern):
name = this.pattern[i]['instruction']['name']
targets = this.pattern[i]['instruction']['targets']