kyhton.kompress: move to core (with a fallback, used in promnesia)

This commit is contained in:
Dima Gerasimov 2020-10-29 01:35:43 +00:00 committed by karlicoss
parent 655b86bb0a
commit 15789a4149
9 changed files with 102 additions and 101 deletions

View file

@ -183,7 +183,7 @@ def get_files(
traceback.print_stack()
if guess_compression:
from ..kython.kompress import CPath # todo move to core?
from .kompress import CPath
paths = [CPath(p) if _is_compressed(p) else p for p in paths]
return tuple(paths)