48fedea799
Since we are on Python 3.6 and up, we don't need those anymore.
9 lines
174 B
Python
9 lines
174 B
Python
from ebook_converter.polyglot.builtins import is_py3
|
|
if is_py3:
|
|
from functools import lru_cache
|
|
else:
|
|
from backports.functools_lru_cache import lru_cache
|
|
|
|
|
|
lru_cache
|