Skip to content

Commit f9cf17c

Browse files
pygmt.set_display: Fix the bug that method=None doesn't reset to the default display method (#3396)
Co-authored-by: Michael Grund <[email protected]>
1 parent 3d61b3f commit f9cf17c

File tree

2 files changed

+38
-18
lines changed

2 files changed

+38
-18
lines changed

pygmt/figure.py

+14-13
Original file line numberDiff line numberDiff line change
@@ -569,22 +569,20 @@ def _repr_html_(self):
569569
)
570570

571571

572-
def set_display(method=None):
572+
def set_display(method: Literal["external", "notebook", "none", None] = None):
573573
"""
574574
Set the display method when calling :meth:`pygmt.Figure.show`.
575575
576576
Parameters
577577
----------
578-
method : str or None
578+
method
579579
The method to display an image preview. Choose from:
580580
581581
- ``"external"``: External PDF preview using the default PDF viewer
582582
- ``"notebook"``: Inline PNG preview in the current notebook
583583
- ``"none"``: Disable image preview
584-
- ``None``: Reset to the default display method
585-
586-
The default display method is ``"external"`` in Python consoles or
587-
``"notebook"`` in Jupyter notebooks.
584+
- ``None``: Reset to the default display method, which is either ``"external"``
585+
in Python consoles or ``"notebook"`` in Jupyter notebooks.
588586
589587
Examples
590588
--------
@@ -607,10 +605,13 @@ def set_display(method=None):
607605
>>> pygmt.set_display(method=None)
608606
>>> fig.show() # again, will show a PNG image in the current notebook
609607
"""
610-
if method in {"notebook", "external", "none"}:
611-
SHOW_CONFIG["method"] = method
612-
elif method is not None:
613-
raise GMTInvalidInput(
614-
f"Invalid display mode '{method}', "
615-
"should be either 'notebook', 'external', 'none' or None."
616-
)
608+
match method:
609+
case "external" | "notebook" | "none":
610+
SHOW_CONFIG["method"] = method # type: ignore[assignment]
611+
case None:
612+
SHOW_CONFIG["method"] = _get_default_display_method() # type: ignore[assignment]
613+
case _:
614+
raise GMTInvalidInput(
615+
f"Invalid display method '{method}'. Valid values are 'external',"
616+
"'notebook', 'none' or None."
617+
)

pygmt/tests/test_figure.py

+24-5
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import pytest
1212
from pygmt import Figure, set_display
1313
from pygmt.exceptions import GMTError, GMTInvalidInput
14-
from pygmt.figure import _get_default_display_method
14+
from pygmt.figure import SHOW_CONFIG, _get_default_display_method
1515
from pygmt.helpers import GMTTempFile
1616

1717
try:
@@ -373,12 +373,31 @@ def test_figure_display_external():
373373
fig.show(method="external")
374374

375375

376-
def test_figure_set_display_invalid():
376+
class TestSetDisplay:
377377
"""
378-
Test to check if an error is raised when an invalid method is passed to set_display.
378+
Test the pygmt.set_display method.
379379
"""
380-
with pytest.raises(GMTInvalidInput):
381-
set_display(method="invalid")
380+
381+
def test_set_display(self):
382+
"""
383+
Test if pygmt.set_display updates the SHOW_CONFIG variable correctly.
384+
"""
385+
default_method = SHOW_CONFIG["method"] # Current default method
386+
387+
for method in ("notebook", "external", "none"):
388+
set_display(method=method)
389+
assert SHOW_CONFIG["method"] == method
390+
391+
# Setting method to None should revert it to the default method.
392+
set_display(method=None)
393+
assert SHOW_CONFIG["method"] == default_method
394+
395+
def test_invalid_method(self):
396+
"""
397+
Test if an error is raised when an invalid method is passed.
398+
"""
399+
with pytest.raises(GMTInvalidInput):
400+
set_display(method="invalid")
382401

383402

384403
def test_figure_unsupported_xshift_yshift():

0 commit comments

Comments
 (0)