Skip to content

Commit

Permalink
Swap to iterate array.
Browse files Browse the repository at this point in the history
  • Loading branch information
robertdstein committed Jul 16, 2020
1 parent 1f485af commit 643a938
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flarestack/core/multiprocess_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def add_to_queue(self, item):
self.queue.put(item)

def dump_all_injection_values(self):
for scale in list(set(list(self.scales))):
for scale in self.scales:
self.mh.dump_injection_values(scale)

def run_trial(self, **kwargs):
Expand Down

0 comments on commit 643a938

Please sign in to comment.