1
0
mirror of https://github.com/gryf/ebook-converter.git synced 2026-01-02 00:22:25 +01:00
Files
ebook-converter/ebook_converter/polyglot/functools.py
gryf 48fedea799 Removing unneeded from __future__ import statements.
Since we are on Python 3.6 and up, we don't need those anymore.
2020-04-19 17:39:02 +02:00

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