We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66cf2b0 commit 311c83fCopy full SHA for 311c83f
pygmt/params/base.py
@@ -51,9 +51,9 @@ def __post_init__(self):
51
"""
52
Post-initialization method to _validate the _aliases property.
53
54
- self.validate()
+ self._validate()
55
56
- def validate(self):
+ def _validate(self):
57
58
Validate the parameters of the object.
59
pygmt/params/box.py
@@ -81,7 +81,7 @@ class Box(BaseParam):
81
shading_offset: Sequence[float | str] | None = None
82
shading_fill: str | None = None
83
84
85
86
Validate the parameters.
87
0 commit comments