Coverage for tests/testLib/testLibContinued.py : 83%

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 lsst.utils import continueClass
3from .testLib import TypeWithProxy, TypeWithoutProxy
6@continueClass # noqa: F811 (FIXME: remove for py 3.8+)
7class TypeWithProxy: # noqa: F811
8 def __reduce__(self):
9 return (TypeWithProxy, ())
12@continueClass # noqa: F811 (FIXME: remove for py 3.8+)
13class TypeWithoutProxy: # noqa: F811
14 def __reduce__(self):
15 return (TypeWithoutProxy, ())