Skip to content

Commit

Permalink
Merge branch 'develop' into fix_sacess_logging
Browse files Browse the repository at this point in the history
  • Loading branch information
dweindl authored Aug 23, 2023
2 parents 6aa2443 + cc9b702 commit f89ade7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pypesto/visualize/misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,8 @@ def process_y_limits(ax, y_limits):
"log-scale. Using only upper bound."
)

# set limits
ax.set_ylim(y_limits)
# set limits
ax.set_ylim(y_limits)

else:
# No limits passed, but if we have a result list: check the limits
Expand Down
2 changes: 1 addition & 1 deletion pypesto/visualize/waterfall.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def waterfall(
ax = handle_options(ax, max_len_fvals, refs, y_limits, offset_y)
if inset_axes is not None:
inset_axes = handle_options(
inset_axes, n_starts_to_zoom, refs, y_limits, offset_y
inset_axes, n_starts_to_zoom, refs, None, offset_y
)

if any(legends):
Expand Down

0 comments on commit f89ade7

Please sign in to comment.