Removed erroneous for loop

This commit is contained in:
aewens 2020-03-16 14:29:53 -05:00
parent 6b5448ad4e
commit 313bb99e94
2 changed files with 26 additions and 27 deletions

View File

@ -1 +1 @@
0.1.10 0.1.11

View File

@ -132,8 +132,7 @@ class Engine:
for (using, mutation) in self._apply_mutations(raw): for (using, mutation) in self._apply_mutations(raw):
for (key, value) in self._get_variables(mutation): for (key, value) in self._get_variables(mutation):
for using_whens in self._whens_map[key]: for using_when in self._whens_map[key]:
for using_when in using_whens:
# Already been triggers, skip # Already been triggers, skip
if using_when in skip_whens: if using_when in skip_whens:
continue continue