Skip to content

Commit 2cb9295

Browse files
committed
clib.virtualfile_in: Remove the 'extra_arrays' parameter
1 parent ce57c59 commit 2cb9295

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

pygmt/clib/session.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1772,7 +1772,6 @@ def virtualfile_in(
17721772
x=None,
17731773
y=None,
17741774
z=None,
1775-
extra_arrays=None,
17761775
required_z=False,
17771776
required_data=True,
17781777
):
@@ -1794,9 +1793,6 @@ def virtualfile_in(
17941793
data input.
17951794
x/y/z : 1-D arrays or None
17961795
x, y, and z columns as numpy arrays.
1797-
extra_arrays : list of 1-D arrays
1798-
Optional. A list of numpy arrays in addition to x, y, and z.
1799-
All of these arrays must be of the same size as the x/y/z arrays.
18001796
required_z : bool
18011797
State whether the 'z' column is required.
18021798
required_data : bool
@@ -1879,8 +1875,6 @@ def virtualfile_in(
18791875
_data = [x, y]
18801876
if z is not None:
18811877
_data.append(z)
1882-
if extra_arrays:
1883-
_data.extend(extra_arrays)
18841878
case "vectors":
18851879
if hasattr(data, "items") and not hasattr(data, "to_frame"):
18861880
# pandas.DataFrame or xarray.Dataset types.

0 commit comments

Comments
 (0)