Files @ ae2466b86670
Branch filter:

Location: Shamira/src/shamira/util.py - annotation

Laman
removed the condensed code
1
2
3
4
5
6
7
try:
	from functools import cache
except ImportError:  # Python<3.9
	from functools import lru_cache

	def cache(f):
		return lru_cache(maxsize=None)(f)