lsst.shapelet  16.0-6-gf0acd13+3
shapeletFunctionContinued.py
Go to the documentation of this file.
1 from __future__ import absolute_import, division, print_function
2 
3 from .shapeletFunction import ShapeletFunction
4 
5 from lsst.utils import continueClass
6 
7 __all__ = []
8 
9 
10 @continueClass # noqa
12  def __reduce__(self):
13  return (ShapeletFunction, (self.getOrder(), self.getBasisType(),
14  self.getEllipse(), self.getCoefficients()))