Skip to content

Commit a506bb1

Browse files
piloubazinjuhuntenburg
authored andcommitted
correcting the mesh pandas issue
1 parent b4de3fb commit a506bb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nighres/io/io_mesh.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ def _read_vtk(file):
385385
'POINT_DATA')].index.tolist()[0]) + 3
386386
number_data = number_vertices
387387
data_df = pd.read_csv(file, skiprows=range(start_data),
388-
nrows=number_data, sep='\s*', header=None,
388+
nrows=number_data, sep='\s+', header=None,
389389
engine='python')
390390
data_array = np.array(data_df)
391391
else:

0 commit comments

Comments
 (0)