Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions autofit/non_linear/quick_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,9 @@ def _convert_jax_to_numpy(instance):


# Filenames the worker looks for under `paths.image_path` when refreshing
# a live quick-update display. The first existing file wins. Quick updates
# write `fit_quick.png` (6-panel subplot); full updates write `fit.png`
# (12-panel). The quick variant is preferred when both exist.
_DISPLAY_CANDIDATES = ("fit_quick.png", "fit.png")
# a live quick-update display. The first existing file wins. Quick and full
# updates both write the normal `fit.png` fit subplot.
_DISPLAY_CANDIDATES = ("fit.png",)


def _is_ipython_kernel() -> bool:
Expand Down
Loading