mirror of
https://github.com/wassname/catalyst.git
synced 2026-06-29 22:49:25 +08:00
fce97176d6
* Updated cython build scripts * Updated setup.py to to install catalyst package * Updated momentum example to use catalyst package * catalyst executable now supports loading pipelines from multiple bundles
9 lines
187 B
Python
9 lines
187 B
Python
class classproperty(object):
|
|
"""Class property
|
|
"""
|
|
def __init__(self, fget):
|
|
self.fget = fget
|
|
|
|
def __get__(self, instance, owner):
|
|
return self.fget(owner)
|