Skip to content

Commit

Permalink
Fix the order
Browse files Browse the repository at this point in the history
  • Loading branch information
seisman committed Sep 27, 2024
1 parent 02ebc94 commit ecd0395
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pygmt/src/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
)
@kwargs_to_strings(R="sequence", c="sequence_comma", i="sequence_comma", p="sequence")
def plot( # noqa: PLR0912
self, data=None, x=None, y=None, size=None, direction=None, symbol=None, **kwargs
self, data=None, x=None, y=None, size=None, symbol=None, direction=None, **kwargs
):
r"""
Plot lines, polygons, and symbols in 2-D.
Expand Down Expand Up @@ -91,13 +91,13 @@ def plot( # noqa: PLR0912
size : 1-D array
The size of the data points in units specified using ``style``.
Only valid if using ``x``/``y``.
symbol : 1-D array
The symbols of the data points. Only valid if using ``x``/``y``.
direction : list of two 1-D arrays
If plotting vectors (using ``style="V"`` or ``style="v"``), then
should be a list of two 1-D arrays with the vector directions. These
can be angle and length, azimuth and length, or x and y components,
depending on the style options chosen.
symbol : 1-D array
The symbols of the data points. Only valid if using ``x``/``y``.
{projection}
{region}
straight_line : bool or str
Expand Down

0 comments on commit ecd0395

Please sign in to comment.