Skip to content

Commit

Permalink
remove some prints
Browse files Browse the repository at this point in the history
  • Loading branch information
nschloe committed Feb 23, 2022
1 parent d772c6d commit 38987bb
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/meshio/flac3d/_flac3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,6 @@ def _read_cell_group_ascii(buf_or_line, line):
data = []
while True:
line = line.rstrip().split()
print(line)
if line and (line[0] not in {"*", "ZGROUP", "FGROUP"}):
data += [int(l) for l in line]
else:
Expand Down Expand Up @@ -541,8 +540,6 @@ def _translate_groups(cells, cell_data, field_data, flag):

def _write_table(f, data, ncol: int = 20):
"""Write group data table."""
print()
print("data", data)
nrow = len(data) // ncol
lines = np.split(data, np.full(nrow, ncol).cumsum())
for line in lines:
Expand Down

0 comments on commit 38987bb

Please sign in to comment.