9 lines
174 B
Python
9 lines
174 B
Python
import sys
|
|
|
|
if sys.version_info[:2] >= (3, 8):
|
|
from functools import cached_property
|
|
else:
|
|
from cached_property import cached_property
|
|
|
|
__all__ = ["cached_property"]
|