mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 08:23:00 +08:00
12 lines
294 B
Python
12 lines
294 B
Python
# noinspection PyPep8Naming
|
|
class classproperty(object):
|
|
"""
|
|
@property for @classmethod
|
|
taken from http://stackoverflow.com/a/13624858
|
|
"""
|
|
|
|
def __init__(self, fget):
|
|
self.fget = fget
|
|
|
|
def __get__(self, owner_self, owner_cls):
|
|
return self.fget(owner_cls)
|