Skip to content

Commit f0b22ed

Browse files
Jammy2211claude
authored andcommitted
fix: auto-space after title_prefix in image_with_positions title
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent e405fc4 commit f0b22ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autolens/analysis/plotter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def should_plot(name):
105105
if isinstance(fmt, (list, tuple)):
106106
fmt = fmt[0]
107107

108-
_title = f"{self.title_prefix}Image With Positions" if self.title_prefix else "Image With Positions"
108+
_title = f"{self.title_prefix.rstrip()} Image With Positions" if self.title_prefix else "Image With Positions"
109109
plot_array(
110110
array=image,
111111
positions=[pos_arr],

0 commit comments

Comments
 (0)