Skip to content

Commit

Permalink
Merge pull request #267 from lsst/tickets/DM-41043
Browse files Browse the repository at this point in the history
DM-41043: Adjust imports referring to lsst.daf.butler.core
  • Loading branch information
TallJimbo authored Oct 9, 2023
2 parents 8e0072f + c4937ba commit cb87889
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions python/lsst/ctrl/mpexec/cmdLineFwk.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@
DatasetId,
DatasetRef,
DatasetType,
DatastoreCacheManager,
DatastoreRecordData,
DimensionUniverse,
LimitedButler,
Quantum,
QuantumBackedButler,
Registry,
)
from lsst.daf.butler.datastore.cache_manager import DatastoreCacheManager
from lsst.daf.butler.datastore.record_data import DatastoreRecordData
from lsst.daf.butler.registry import MissingCollectionError, RegistryDefaults
from lsst.daf.butler.registry.wildcards import CollectionWildcard
from lsst.pipe.base import (
Expand Down
2 changes: 1 addition & 1 deletion python/lsst/ctrl/mpexec/log_capture.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
from logging import FileHandler

from lsst.daf.butler import Butler, FileDataset, LimitedButler, Quantum
from lsst.daf.butler.core.logging import ButlerLogRecordHandler, ButlerLogRecords, ButlerMDC, JsonLogFormatter
from lsst.daf.butler.logging import ButlerLogRecordHandler, ButlerLogRecords, ButlerMDC, JsonLogFormatter
from lsst.pipe.base import InvalidQuantumError, TaskDef

_LOG = logging.getLogger(__name__)
Expand Down
3 changes: 2 additions & 1 deletion python/lsst/ctrl/mpexec/showInfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@

import lsst.pex.config as pexConfig
import lsst.pex.config.history as pexConfigHistory
from lsst.daf.butler import Butler, DatasetRef, DatasetType, DatastoreRecordData, NamedKeyMapping
from lsst.daf.butler import Butler, DatasetRef, DatasetType, NamedKeyMapping
from lsst.daf.butler.datastore.record_data import DatastoreRecordData
from lsst.pipe.base import Pipeline, QuantumGraph
from lsst.pipe.base.pipeline_graph import visualization

Expand Down
2 changes: 1 addition & 1 deletion tests/test_cmdLineFwk.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@
Config,
DataCoordinate,
DatasetRef,
DatasetType,
DimensionConfig,
DimensionUniverse,
Quantum,
Registry,
)
from lsst.daf.butler.core.datasets.type import DatasetType
from lsst.daf.butler.registry import RegistryConfig
from lsst.pipe.base import (
Instrument,
Expand Down

0 comments on commit cb87889

Please sign in to comment.