log.py 91 Bytes
Newer Older
jixx's avatar
init  
jixx committed
1
2
3
4
5
6
from functools import lru_cache


@lru_cache(10)
def log_once(log, msg: str):
    log(msg)