From 7ec62b7f693d6e5dd9b00756d4f40bf402ea1cd5 Mon Sep 17 00:00:00 2001 From: Adam Blank <blank@caltech.edu> Date: Mon, 4 Nov 2024 02:18:50 +0000 Subject: [PATCH] Update __init__.py --- e1/checker/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/e1/checker/__init__.py b/e1/checker/__init__.py index a14ccc8..8fba18e 100644 --- a/e1/checker/__init__.py +++ b/e1/checker/__init__.py @@ -1,11 +1,10 @@ - import sys version = ''.join(sys.version.split(" ")[0].split(".")[:-1]) import importlib.util def load(x): - spec = importlib.util.spec_from_file_location(x,f"checker/{x}.cpython-{version}.pyc") + spec = importlib.util.spec_from_file_location(x,f"e1/checker/{x}.cpython-{version}.pyc") mod = importlib.util.module_from_spec(spec) spec.loader.exec_module(mod) return mod -- GitLab