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-31722: Use relocated getFullTypeName from lsst.utils #198

Merged
merged 1 commit into from
Oct 8, 2021
Merged
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
4 changes: 2 additions & 2 deletions python/lsst/ip/isr/calibType.py
Expand Up @@ -30,7 +30,7 @@
from astropy.io import fits

from lsst.daf.base import PropertyList
from lsst.daf.butler.core.utils import getFullTypeName
from lsst.utils.introspection import get_full_type_name
from lsst.utils import doImport


Expand Down Expand Up @@ -253,7 +253,7 @@ def updateMetadata(self, camera=None, detector=None, filterName=None,
self._metadata["DET_SER"] = self._detectorSerial if self._detectorSerial else None
self._metadata["FILTER"] = self._filter if self._filter else None
self._metadata["CALIB_ID"] = self._calibId if self._calibId else None
self._metadata["CALIBCLS"] = getFullTypeName(self)
self._metadata["CALIBCLS"] = get_full_type_name(self)

mdSupplemental.update(kwargs)
mdOriginal.update(mdSupplemental)
Expand Down