@@ -112,7 +112,9 @@ class ActionExecutionDB_OldFieldType(ActionExecutionDB):
112112 trigger_type = stormbase .EscapedDictField ()
113113 trigger_instance = stormbase .EscapedDictField ()
114114 rule = stormbase .EscapedDictField ()
115- result_size = me .IntField (default = 0 , help_text = "Serialized result size in bytes" )
115+ result_size = me .IntField (
116+ default = 0 , help_text = "Serialized result size in bytes"
117+ )
116118 parent = me .StringField ()
117119 children = me .ListField (field = me .StringField ())
118120 log = me .ListField (field = me .DictField ())
@@ -135,7 +137,8 @@ class LiveActionDB_OldFieldType(LiveActionDB):
135137 help_text = "The timestamp when the liveaction has finished."
136138 )
137139 action = me .StringField (
138- required = True , help_text = "Reference to the action that has to be executed."
140+ required = True ,
141+ help_text = "Reference to the action that has to be executed." ,
139142 )
140143 parameters = JSONDictEscapedFieldCompatibilityField (
141144 default = {},
@@ -182,7 +185,8 @@ class LiveActionDB_NewFieldType(LiveActionDB):
182185 help_text = "The timestamp when the liveaction has finished."
183186 )
184187 action = me .StringField (
185- required = True , help_text = "Reference to the action that has to be executed."
188+ required = True ,
189+ help_text = "Reference to the action that has to be executed." ,
186190 )
187191 parameters = JSONDictEscapedFieldCompatibilityField (
188192 default = {},
@@ -242,7 +246,9 @@ class ActionExecutionDB_NewFieldType(ActionExecutionDB):
242246 trigger_type = stormbase .EscapedDictField ()
243247 trigger_instance = stormbase .EscapedDictField ()
244248 rule = stormbase .EscapedDictField ()
245- result_size = me .IntField (default = 0 , help_text = "Serialized result size in bytes" )
249+ result_size = me .IntField (
250+ default = 0 , help_text = "Serialized result size in bytes"
251+ )
246252 parent = me .StringField ()
247253 children = me .ListField (field = me .StringField ())
248254 log = me .ListField (field = me .DictField ())
0 commit comments