File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -1772,7 +1772,6 @@ def virtualfile_in(
1772
1772
x = None ,
1773
1773
y = None ,
1774
1774
z = None ,
1775
- extra_arrays = None ,
1776
1775
required_z = False ,
1777
1776
required_data = True ,
1778
1777
):
@@ -1794,9 +1793,6 @@ def virtualfile_in(
1794
1793
data input.
1795
1794
x/y/z : 1-D arrays or None
1796
1795
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.
1800
1796
required_z : bool
1801
1797
State whether the 'z' column is required.
1802
1798
required_data : bool
@@ -1879,8 +1875,6 @@ def virtualfile_in(
1879
1875
_data = [x , y ]
1880
1876
if z is not None :
1881
1877
_data .append (z )
1882
- if extra_arrays :
1883
- _data .extend (extra_arrays )
1884
1878
case "vectors" :
1885
1879
if hasattr (data , "items" ) and not hasattr (data , "to_frame" ):
1886
1880
# pandas.DataFrame or xarray.Dataset types.
You can’t perform that action at this time.
0 commit comments