Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions python/lsst/ip/diffim/modelPsfMatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ class WarpedPsfTransformTooBigError(pipeBase.AlgorithmError):
"""Raised when the transform of a WarpedPsf is too large to compute
the FWHM of the PSF at a given position.
"""
@property
def metadata(self) -> dict:
return {}

Expand All @@ -64,6 +65,7 @@ def __init__(self, position):
super().__init__(message)
self.position = position

@property
def metadata(self) -> dict:
return {
"position": self.position,
Expand Down