Hide keyboard shortcuts

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 .multiShapeletFunction import MultiShapeletFunction 

2 

3from lsst.utils import continueClass 

4 

5__all__ = [] 

6 

7 

8@continueClass # noqa F811 

9class MultiShapeletFunction: 

10 def __reduce__(self): 

11 return (MultiShapeletFunction, (list(self.getComponents()),))