Skip to content

Commit

Permalink
repair memory aggregation
Browse files Browse the repository at this point in the history
  • Loading branch information
ecpeterson committed Jul 23, 2019
1 parent 77a7c30 commit 666154f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyquil/pyqvm.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ def run(self):
self.execute(self.program)
for name in self.ram.keys():
self._memory_results.setdefault(name, list())
self._memory_results.append(self.ram[name])
self._memory_results[name].append(self.ram[name])

# TODO: this will need to be removed in merge conflict with #873
self._bitstrings = self._memory_results['ro']
Expand Down

0 comments on commit 666154f

Please sign in to comment.