lsst.shapelet g5ffd174ac0+e9ed9f2f36
Loading...
Searching...
No Matches
shapeletFunctionContinued.py
Go to the documentation of this file.
1from .shapeletFunction import ShapeletFunction
2
3from lsst.utils import continueClass
4
5__all__ = []
6
7
8@continueClass # noqa: F811 (FIXME: remove for py 3.8+)
9class ShapeletFunction: # noqa: F811
10 def __reduce__(self):
11 return (ShapeletFunction, (self.getOrder(), self.getBasisType(),
12 self.getEllipse(), self.getCoefficients()))