We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29483ca commit e722d1dCopy full SHA for e722d1d
apstools/plans.py
@@ -618,8 +618,8 @@ def _scan(md=None):
618
stream_name = "PeakStats"
619
results = Results(name=stream_name)
620
621
- for key in "tune_ok center".split():
622
- getattr(results, key).put(getattr(self, key))
+ results.tune_ok.put(self.tune_ok)
+ results.center.put(self.center)
623
results.final_position.put(final_position)
624
results.initial_position.put(initial_position)
625
for key in results.peakstats_attrs:
0 commit comments