diff --git a/src/Mod/Fem/femobjects/FemConstraint.py b/src/Mod/Fem/femobjects/FemConstraint.py index 060a1ac634c2..00fe8b60a19b 100644 --- a/src/Mod/Fem/femobjects/FemConstraint.py +++ b/src/Mod/Fem/femobjects/FemConstraint.py @@ -25,8 +25,9 @@ __author__ = "Markus Hovorka" __url__ = "http://www.freecadweb.org" -## \addtogroup FEM -# @{ +## @package _BaseObject +# \ingroup FEM +# \brief FreeCAD _Base Object for FEM workbench class Proxy(object): @@ -41,12 +42,10 @@ def __init__(self, obj): # https://forum.freecadweb.org/viewtopic.php?f=18&t=44021 # https://forum.freecadweb.org/viewtopic.php?f=18&t=44009 def __getstate__(self): - return self.Type + return self.Type def __setstate__(self, state): # a few FEM objects had this attribut assignment before the move to this Python base obj class # these objects will give a setAttr failed error on document loading without this assignment if state: self.Type = state - -## @}