From fa6a292248e4ee01d0507cf5986d1bda05121fd9 Mon Sep 17 00:00:00 2001 From: Jammy2211 Date: Sun, 10 May 2026 18:48:09 +0100 Subject: [PATCH] feat: re-export galaxy_table CSV helpers from autogalaxy Companion to PyAutoGalaxy#392. Adds explicit imports for GalaxyTable, galaxy_table_from_csv, and galaxy_table_to_csv so the new helpers are reachable as al.* (autolens does not auto-`*`-import from autogalaxy; each re-exported symbol must be listed individually). Co-Authored-By: Claude Opus 4.7 (1M context) --- autolens/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/autolens/__init__.py b/autolens/__init__.py index 730f120cd..f09ff2310 100644 --- a/autolens/__init__.py +++ b/autolens/__init__.py @@ -60,6 +60,9 @@ from autogalaxy.gui.scribbler import Scribbler from autogalaxy.galaxy.galaxy import Galaxy from autogalaxy.galaxy.galaxies import Galaxies +from autogalaxy.galaxy.galaxy_table import GalaxyTable +from autogalaxy.galaxy.galaxy_table import galaxy_table_from_csv +from autogalaxy.galaxy.galaxy_table import galaxy_table_to_csv from autogalaxy.galaxy.redshift import Redshift from autogalaxy.quantity.dataset_quantity import DatasetQuantity