diff --git a/docs/gui.rst b/docs/gui.rst index ddabec5..443a59d 100644 --- a/docs/gui.rst +++ b/docs/gui.rst @@ -69,7 +69,7 @@ There is a GUI extension to perform clustering of the routes. Enter the followin .. code-block:: %matplotlib inline - from aizynthfinder.interfaces.gui import ClusteringGui + from aizynthfinder.interfaces.gui.clustering import ClusteringGui ClusteringGui.from_app(app) diff --git a/tests/test_cli.py b/tests/test_cli.py index b363a13..0be8e2d 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -19,7 +19,7 @@ from aizynthfinder.tools.make_stock import main as make_stock_main try: - from aizynthfinder.interfaces.gui import ClusteringGui + from aizynthfinder.interfaces.gui.clustering import ClusteringGui except ImportError: SUPPORT_CLUSTERING = False else: