FEM: remove superfluous 'pass'

Fixes LGTM alert  
Per the documentation:  
```
A 'pass' statement is only necessary when it is the only statement in a block (the list of statements forming part of a compound statement). This is because the purpose of the 'pass' statement is to allow empty blocks where they would otherwise be syntactically invalid. If the block already contains other statements then the 'pass' statement is unnecessary.
```
This commit is contained in:
luz paz
2020-10-08 17:37:07 -04:00
committed by Bernd Hahnebach
parent ed5fbb876b
commit ebc0ef5d53

View File

@@ -2,7 +2,7 @@
# * Copyright (c) 2020 Bernd Hahnebach <bernd@bimstatik.org> *
# * *
# * This file is part of the FreeCAD CAx development system. *
# * *
# * This program is free software; you can redistribute it and/or modify *
# * it under the terms of the GNU Lesser General Public License (LGPL) *
# * as published by the Free Software Foundation; either version 2 of *
@@ -41,5 +41,3 @@ class ConstraintSectionPrint(base_fempythonobject.BaseFemPythonObject):
def __init__(self, obj):
super(ConstraintSectionPrint, self).__init__(obj)
pass