From ab4310cf87eefec7d64a52a97b50f5553b5bdcd8 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Tue, 17 Aug 2021 10:19:16 +0200 Subject: [PATCH] fixes in console to match new structure --- .../default_modules/python_console_interpreter/module.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openpype/modules/default_modules/python_console_interpreter/module.py b/openpype/modules/default_modules/python_console_interpreter/module.py index 7fd8d80f28..f4df3fb6d8 100644 --- a/openpype/modules/default_modules/python_console_interpreter/module.py +++ b/openpype/modules/default_modules/python_console_interpreter/module.py @@ -1,5 +1,5 @@ from openpype.modules import OpenPypeModule -from openpype_interfaces import ITrayModule +from openpype_interfaces import ITrayAction class PythonInterpreterAction(OpenPypeModule, ITrayAction): @@ -26,7 +26,7 @@ class PythonInterpreterAction(OpenPypeModule, ITrayAction): if self._interpreter_window: return - from openpype.modules.python_console_interpreter.window import ( + from openpype_modules.python_console_interpreter.window import ( PythonInterpreterWidget )