Coverage for python/lsst/shapelet/shapeletFunction/shapeletFunctionContinued.py : 88%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1from .shapeletFunction import ShapeletFunction
3from lsst.utils import continueClass
5__all__ = []
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()))