From 6415da4bb08c890742b4e3651e05db5225370e13 Mon Sep 17 00:00:00 2001 From: kpzn768 Date: Wed, 4 Dec 2024 16:31:00 +0100 Subject: [PATCH] Update clustering gui imports --- docs/gui.rst | 2 +- tests/test_cli.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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: