From 544393c535b19030120e7148353942ccf2091f2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yvonne=20Fr=C3=B6hlich?= Date: Sun, 5 Jul 2026 18:41:56 +0200 Subject: [PATCH] Add import of Axis and Frame parameter classes --- pygmt/params/frame.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pygmt/params/frame.py b/pygmt/params/frame.py index 2381ede9670..d39e12ea333 100644 --- a/pygmt/params/frame.py +++ b/pygmt/params/frame.py @@ -23,6 +23,7 @@ class Axis(BaseParam): annotations, 2 for ticks, and 1 for gridlines: >>> import pygmt + >>> from pygmt.params import Axis >>> fig = pygmt.Figure() >>> fig.basemap( ... region=[0, 10, 0, 20], @@ -127,6 +128,7 @@ class Frame(BaseParam): and north axes with ticks but without annotations: >>> import pygmt + >>> from pygmt.params import Axis, Frame >>> fig = pygmt.Figure() >>> fig.basemap( ... region=[0, 10, 0, 20], projection="X10c/10c", frame=Frame(axes="WSen")