bluesky / databroker

Unified API pulling data from multiple sources
https://blueskyproject.io/databroker
BSD 3-Clause "New" or "Revised" License
33 stars 45 forks source link

Update store-analysis-results.rst #784

Closed subindevs closed 11 months ago

subindevs commented 1 year ago

Fix: replaced import bluesky_live.run_builder import 'module_name' with from bluesky_live.run_builder import 'module_name'. Because repeated import statements causes syntax error

Description

In the current documentation there are two code lines import bluesky_live.run_builder import build_simple_run and import bluesky_live.run_builder import RunBuilder, which give syntax error. It should be frombluesky_live.run_builder import build_simple_run and frombluesky_live.run_builder import RunBuilder

Motivation and Context

How Has This Been Tested?

Copy pasted the code in the example to python note book which gives syntax error.

danielballan commented 1 year ago

Thank you!