@@ -269,7 +269,7 @@ def __init__(
269269 self .set_appstruct (appstruct )
270270
271271 def found_first (self ):
272- """ Set have_first_input of ancestors """
272+ """Set have_first_input of ancestors"""
273273 self .have_first_input = True
274274 if self .parent is not None :
275275 self .parent .found_first ()
@@ -281,7 +281,7 @@ def parent(self):
281281 return self ._parent ()
282282
283283 def get_root (self ):
284- """ Return the root field in the field hierarchy (the form field) """
284+ """Return the root field in the field hierarchy (the form field)"""
285285 node = self
286286 while True :
287287 parent = node .parent
@@ -353,7 +353,7 @@ def translate(self, msgid):
353353 return msgid
354354
355355 def __iter__ (self ):
356- """ Iterate over the children fields of this field. """
356+ """Iterate over the children fields of this field."""
357357 return iter (self .children )
358358
359359 def __getitem__ (self , name ):
@@ -626,7 +626,7 @@ def serialize(self, cstruct=_marker, **kw):
626626 return self .widget .serialize (** values )
627627
628628 def deserialize (self , pstruct ):
629- """ Deserialize the pstruct into a cstruct and return the cstruct."""
629+ """Deserialize the pstruct into a cstruct and return the cstruct."""
630630 return self .widget .deserialize (self , pstruct )
631631
632632 def render (self , appstruct = _marker , ** kw ):
0 commit comments