From 9de17767531c8fff4aa5ac2b503c6e106c80cc04 Mon Sep 17 00:00:00 2001 From: youben11 Date: Fri, 25 Mar 2022 15:06:07 +0100 Subject: [PATCH] fix: fix imports --- compiler/tests/python/test_compiler_engine.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/tests/python/test_compiler_engine.py b/compiler/tests/python/test_compiler_engine.py index 4064beea3..0f18e5c32 100644 --- a/compiler/tests/python/test_compiler_engine.py +++ b/compiler/tests/python/test_compiler_engine.py @@ -4,9 +4,9 @@ import tempfile import pytest import numpy as np from concrete.compiler import CompilerEngine -from lib.Bindings.Python.concrete.compiler import JITCompilerSupport, LibraryCompilerSupport -from lib.Bindings.Python.concrete.compiler import ClientSupport -from lib.Bindings.Python.concrete.compiler import KeySetCache +from concrete.compiler import JITCompilerSupport, LibraryCompilerSupport +from concrete.compiler import ClientSupport +from concrete.compiler import KeySetCache KEY_SET_CACHE_PATH = os.path.join(tempfile.gettempdir(), 'KeySetCache')