File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1773,8 +1773,8 @@ def virtualfile_in(
1773
1773
y = None ,
1774
1774
z = None ,
1775
1775
extra_arrays = None ,
1776
- required_z = False ,
1777
1776
required_data = True ,
1777
+ required_ncols = 2 ,
1778
1778
):
1779
1779
"""
1780
1780
Store any data inside a virtual file.
@@ -1797,11 +1797,11 @@ def virtualfile_in(
1797
1797
extra_arrays : list of 1-D arrays
1798
1798
Optional. A list of numpy arrays in addition to x, y, and z.
1799
1799
All of these arrays must be of the same size as the x/y/z arrays.
1800
- required_z : bool
1801
- State whether the 'z' column is required.
1802
1800
required_data : bool
1803
1801
Set to True when 'data' is required, or False when dealing with
1804
1802
optional virtual files. [Default is True].
1803
+ required_ncols
1804
+ Number of minimum required columns.
1805
1805
1806
1806
Returns
1807
1807
-------
@@ -1835,8 +1835,8 @@ def virtualfile_in(
1835
1835
x = x ,
1836
1836
y = y ,
1837
1837
z = z ,
1838
- required_z = required_z ,
1839
1838
required_data = required_data ,
1839
+ required_ncols = required_ncols ,
1840
1840
kind = kind ,
1841
1841
)
1842
1842
You can’t perform that action at this time.
0 commit comments