You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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"]