We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b17ecfe commit 6ec9c66Copy full SHA for 6ec9c66
pygmt/src/logo.py
@@ -124,7 +124,7 @@ def logo( # noqa: PLR0913
124
"plotcoords": "x",
125
"inside": "j",
126
"outside": "J",
127
- }.get(position_type)
+ }[position_type]
128
129
aliasdict = AliasSystem(
130
D=[
pygmt/tests/test_logo.py
@@ -27,7 +27,7 @@ def test_logo_on_a_map():
27
fig.logo(
28
position_type="inside",
29
position="TR",
30
- offset=(0.25, 0.25),
+ anchor_offset=(0.25, 0.25),
31
width="7.5c",
32
box=True,
33
)
0 commit comments