From d88f5a83e9d04be2247a64eb4762f414362762ac Mon Sep 17 00:00:00 2001 From: Jammy2211 Date: Fri, 10 Apr 2026 09:23:18 +0100 Subject: [PATCH] fix: re-export subplot_interferometer_dataset from autogalaxy.plot The `subplot_interferometer_dataset` helper exists in autoarray.plot and is already re-exported by autolens.plot, but was missing from autogalaxy.plot alongside `subplot_interferometer_dirty_images`. This caused `aplt.subplot_interferometer_dataset(...)` to raise AttributeError in autogalaxy_workspace scripts. Co-Authored-By: Claude Opus 4.6 --- autogalaxy/plot/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/autogalaxy/plot/__init__.py b/autogalaxy/plot/__init__.py index b679de0b..ed7886b3 100644 --- a/autogalaxy/plot/__init__.py +++ b/autogalaxy/plot/__init__.py @@ -14,6 +14,7 @@ fits_imaging, ) from autoarray.dataset.plot.interferometer_plots import ( + subplot_interferometer_dataset, subplot_interferometer_dirty_images, fits_interferometer, )