FEM: code formating, pep8

This commit is contained in:
Bernd Hahnebach
2018-12-20 08:33:10 +01:00
committed by Yorik van Havre
parent e72bd857c7
commit 0d8388a47a

View File

@@ -68,7 +68,7 @@ def get_defmake_count(fem_vtk_post=True):
if not fem_vtk_post: # FEM VTK post processing is disabled, we are not able to create VTK post objects
new_lines = []
for l in lines_defmake:
if not "PostVtk" in l:
if "PostVtk" not in l:
new_lines.append(l)
lines_defmake = new_lines
return len(lines_defmake)