Skip to content

Commit

Permalink
DOC pep8 naming in the example
Browse files Browse the repository at this point in the history
  • Loading branch information
prjemian authored Sep 6, 2024
1 parent 50b4e8c commit a95846c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apstools/devices/aps_machine.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ class ApsMachineParametersDevice(Device):
EXAMPLE::
import apstools.devices as APS_devices
APS = APS_devices.ApsMachineParametersDevice(name="APS")
aps_current = APS.current
import apstools.devices
aps = apstools.devices.ApsMachineParametersDevice(name="aps")
aps_current = aps.current
# make sure these values are logged at start and stop of every scan
sd.baseline.append(APS)
sd.baseline.append(aps)
# record storage ring current as secondary stream during scans
# name: aps_current_monitor
# db[-1].table("aps_current_monitor")
Expand Down

0 comments on commit a95846c

Please sign in to comment.