diff --git a/iscc_core/check.py b/iscc_core/check.py index f7f5242..7290028 100644 --- a/iscc_core/check.py +++ b/iscc_core/check.py @@ -16,6 +16,6 @@ def turbo(): # pragma: no cover for module in modules: module_file = inspect.getfile(module) log.debug(f"Module {module.__name__} file: {module_file}") - if module_file.endswith(".py"): + if module_file.endswith(".py") or module_file.endswith(".pyc"): return False return True