diff --git a/keras_utils/__init__.py b/keras_utils/__init__.py index 761f0a1..faff47f 100644 --- a/keras_utils/__init__.py +++ b/keras_utils/__init__.py @@ -4,11 +4,3 @@ from . import metrics from . import models from . import schedules - -import sys -from pathlib import Path -import os - -libdir = os.path.dirname(__file__) -srcdir = libdir+'/..' -sys.path.insert(0, str(Path(os.path.abspath(srcdir)))) \ No newline at end of file diff --git a/keras_utils/tests/__init__.py b/keras_utils/tests/__init__.py index d365c98..e69de29 100644 --- a/keras_utils/tests/__init__.py +++ b/keras_utils/tests/__init__.py @@ -1,9 +0,0 @@ -import sys -from pathlib import Path -import os -testdir = os.path.dirname(__file__) -ku_srcdir = testdir+'/..' -sys.path.insert(0, str(Path(os.path.abspath(ku_srcdir)))) -srcdir = ku_srcdir+'/..' -print(srcdir) -sys.path.insert(0, str(Path(os.path.abspath(srcdir)))) \ No newline at end of file