File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -182,7 +182,7 @@ def populate(
182
182
:type make_kwargs: dict, optional
183
183
:return: a dict with two keys
184
184
"success_count": the count of successful ``make()`` calls in this ``populate()`` call
185
- "error_list": the error list if "suppress_errors" is set to True, otherwise None
185
+ "error_list": the error list that is filled if `suppress_errors` is True
186
186
"""
187
187
if self .connection .in_transaction :
188
188
raise DataJointError ("Populate cannot be called during a transaction." )
@@ -277,7 +277,7 @@ def handler(signum, frame):
277
277
278
278
return {
279
279
"success_count" : sum (success_list ),
280
- "error_list" : error_list if suppress_errors else None ,
280
+ "error_list" : error_list ,
281
281
}
282
282
283
283
def _populate1 (
You can’t perform that action at this time.
0 commit comments