Skip to content

Commit

Permalink
removed raw print statement from Domain to prevent stdio clutter
Browse files Browse the repository at this point in the history
  • Loading branch information
cekees committed Aug 22, 2023
1 parent e1f937e commit e34f040
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion proteus/Domain.py
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,6 @@ def writePoly(self,fileprefix):
#write the vertices
for vN,v in enumerate(self.vertices):
pf.write('%d %21.16e %21.16e ' % (vN+1,v[0],v[1]))
print(self.vertexFlags)
if self.vertexFlags :#write vertex flag if we have vertexFlags
pf.write('%d\n' % (self.vertexFlags[vN],))
else:
Expand Down

0 comments on commit e34f040

Please sign in to comment.