@@ -569,22 +569,20 @@ def _repr_html_(self):
569
569
)
570
570
571
571
572
- def set_display (method = None ):
572
+ def set_display (method : Literal [ "external" , "notebook" , "none" , None ] = None ):
573
573
"""
574
574
Set the display method when calling :meth:`pygmt.Figure.show`.
575
575
576
576
Parameters
577
577
----------
578
- method : str or None
578
+ method
579
579
The method to display an image preview. Choose from:
580
580
581
581
- ``"external"``: External PDF preview using the default PDF viewer
582
582
- ``"notebook"``: Inline PNG preview in the current notebook
583
583
- ``"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.
588
586
589
587
Examples
590
588
--------
@@ -607,10 +605,13 @@ def set_display(method=None):
607
605
>>> pygmt.set_display(method=None)
608
606
>>> fig.show() # again, will show a PNG image in the current notebook
609
607
"""
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
+ )
0 commit comments