Skip to content

Commit

Permalink
DOC #533
Browse files Browse the repository at this point in the history
  • Loading branch information
prjemian committed Sep 20, 2021
1 parent 9f65705 commit ad1bdcf
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 12 deletions.
3 changes: 2 additions & 1 deletion apstools/_plans/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
from .doc_run import * # noqa
from .doc_run import addDeviceDataAsStream
from .doc_run import documentation_run
2 changes: 0 additions & 2 deletions apstools/_plans/doc_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
~documentation_run
"""

__all__ = "addDeviceDataAsStream documentation_run".split()

from .. utils import ipython_shell_namespace
from bluesky import plan_stubs as bps
from ophyd import Signal
Expand Down
2 changes: 1 addition & 1 deletion apstools/_utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from .override_parameters import * # noqa
from .override_parameters import OverrideParameters
4 changes: 0 additions & 4 deletions apstools/_utils/override_parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,6 @@
~OverrideParameters
"""

__all__ = [
"OverrideParameters",
]


import pandas as pd

Expand Down
6 changes: 3 additions & 3 deletions apstools/plans.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
.. autosummary::
~addDeviceDataAsStream
~apstools._plans.doc_run.addDeviceDataAsStream
~apstools._plans.doc_run.documentation_run
~execute_command_list
~get_command_list
Expand Down Expand Up @@ -48,8 +48,8 @@
from ophyd.scaler import ScalerCH, ScalerChannel

from . import utils as APS_utils
from ._plans import * # noqa

from ._plans import addDeviceDataAsStream
from ._plans import documentation_run

logger = logging.getLogger(__name__)
logger.info(__file__)
Expand Down
2 changes: 1 addition & 1 deletion apstools/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
import zipfile

from .filewriters import _rebuild_scan_command
from ._utils import * # noqa
from ._utils import OverrideParameters


logger = logging.getLogger(__name__)
Expand Down

0 comments on commit ad1bdcf

Please sign in to comment.