Skip to content

Commit db382d4

Browse files
Jammy2211Jammy2211
authored andcommitted
black
1 parent a3ea9d0 commit db382d4

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

autogalaxy/analysis/plotter_interface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ def should_plot(name):
242242
noise_map = inversion.reconstruction_noise_map_dict[mapper]
243243

244244
with open(
245-
self.image_path / f"inversion_reconstruction_{i}.csv",
245+
self.image_path / f"source_plane_reconstruction_{i}.csv",
246246
mode="w",
247247
newline="",
248248
) as file:

test_autogalaxy/analysis/test_plotter_interface.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ def test__inversion(
6161

6262
assert path.join(plot_path, "subplot_inversion_0.png") in plot_patch.paths
6363

64-
with open(path.join(plot_path, "inversion_reconstruction_0.csv"), mode="r") as file:
64+
with open(
65+
path.join(plot_path, "source_plane_reconstruction_0.csv"), mode="r"
66+
) as file:
6567
reader = csv.reader(file)
6668
header_list = next(reader) # ['y', 'x', 'reconstruction', 'noise_map']
6769

0 commit comments

Comments
 (0)