Skip to content

Commit

Permalink
remove some stray print()s
Browse files Browse the repository at this point in the history
  • Loading branch information
nschloe committed Feb 21, 2020
1 parent ef13971 commit 79cc848
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion meshio/gmsh/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ def read_buffer(f):
if line != "$MeshFormat":
raise ReadError()
fmt_version, data_size, is_ascii = _read_header(f)
print(fmt_version, data_size, is_ascii)

try:
reader = _readers[fmt_version]
Expand Down
1 change: 0 additions & 1 deletion meshio/permas/_permas.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,6 @@ def read_set(f, params_map):
try:
set_ids = numpy.unique(numpy.array(set_ids, dtype="int32"))
except ValueError:
print(set_ids)
raise
return set_ids

Expand Down
2 changes: 0 additions & 2 deletions test/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,8 +306,6 @@ def write_read(writer, reader, input_mesh, atol, extension=".dat"):
# to make sure we are testing same type of cells we sort the list
for cells0, cells1 in zip(sorted(input_mesh.cells), sorted(mesh.cells)):
assert cells0.type == cells1.type
print(cells0.data)
print(cells1.data)
assert numpy.array_equal(cells0.data, cells1.data)

for key in input_mesh.point_data.keys():
Expand Down
1 change: 0 additions & 1 deletion tools/paraview-meshio-plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ def RequestData(self, request, inInfoVec, outInfoVec):
output.PointData.append(array, name)

# Cell data
print(mesh.cell_data)
for name, data in mesh.cell_data.items():
array = np.concatenate(data)
output.CellData.append(array, name)
Expand Down

0 comments on commit 79cc848

Please sign in to comment.