From 349835d5b6a0dbb641516a14c3799222a8c390e6 Mon Sep 17 00:00:00 2001 From: krishna katyal Date: Wed, 4 May 2022 15:05:26 +0530 Subject: [PATCH] changed the animegan.py Signed-off-by: krishna katyal --- animegan.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/animegan.py b/animegan.py index 0982a80..da3e055 100644 --- a/animegan.py +++ b/animegan.py @@ -20,8 +20,8 @@ class Animegan(Operator): super().__init__() if framework == 'pytorch': import importlib.util - path = os.path.join(str(Path(__file__).parent), 'pytorch', 'model.py') - opname = os.path.basename(str(Path(__file__))).split('.')[0] + path = os.path.join(str(Path("__file__").parent), 'pytorch', 'model.py') + opname = os.path.basename(str(Path("__file__"))).split('.')[0] spec = importlib.util.spec_from_file_location(opname, path) module = importlib.util.module_from_spec(spec) spec.loader.exec_module(module)