Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-25153: Move instrument.py to _instrument.py #215

Merged
merged 1 commit into from
May 29, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/lsst/obs/lsst/__init__.py
Expand Up @@ -23,4 +23,4 @@
from .version import *
from .lsstCamMapper import *
from .filters import *
from .instrument import *
from ._instrument import *
Expand Up @@ -27,7 +27,7 @@
import lsst.obs.base.yamlCamera as yamlCamera
from lsst.daf.butler.core.utils import getFullTypeName
from lsst.utils import getPackageDir
from lsst.obs.base.instrument import Instrument
from lsst.obs.base import Instrument
from lsst.obs.base.gen2to3 import TranslatorFactory
from .filters import LSSTCAM_FILTER_DEFINITIONS, LATISS_FILTER_DEFINITIONS

Expand Down
2 changes: 1 addition & 1 deletion python/lsst/obs/lsst/rawFormatter.py
Expand Up @@ -29,7 +29,7 @@
import lsst.afw.fits
from lsst.obs.base.fitsRawFormatterBase import FitsRawFormatterBase

from .instrument import LsstCam, Latiss, \
from ._instrument import LsstCam, Latiss, \
LsstImSim, LsstPhoSim, LsstTS8, \
LsstTS3, LsstUCDCam, LsstComCam
from .translators import LatissTranslator, LsstCamTranslator, \
Expand Down