Fix typo in TODO comment in plot.py

This commit is contained in:
crStiv 2026-01-20 00:14:51 +02:00 committed by GitHub
parent 8edfbe1de4
commit b44eca5a5e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -375,7 +375,7 @@ def create_figure(dataframe_list: list[pd.DataFrame], config: AttributeDict):
if num_cols == 1 and n_rows_max > 1:
figsize = (2**3 * scale, 2 * 3 * n_rows_max * scale)
elif num_cols == 2:
# TODO: after removing cbar from left subifgure, it is squished
# TODO: after removing cbar from left subfigure, it is squished
# there is an argument to share the legend, we should use that
figsize = (12 * scale, 5.4 * n_rows_max * scale)
elif num_cols > 2: