File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -290,7 +290,7 @@ def _populate1(
290
290
:param suppress_errors: bool if errors should be suppressed and returned
291
291
:param return_exception_objects: if True, errors must be returned as objects
292
292
:return: (key, error) when suppress_errors=True,
293
- True if successfully invoke one `make()` call, otherwise None
293
+ True if successfully invoke one `make()` call, otherwise False
294
294
"""
295
295
make = self ._make_tuples if hasattr (self , "_make_tuples" ) else self .make
296
296
@@ -341,6 +341,8 @@ def _populate1(
341
341
finally :
342
342
self .__class__ ._allow_insert = False
343
343
344
+ return False
345
+
344
346
def progress (self , * restrictions , display = False ):
345
347
"""
346
348
Report the progress of populating the table.
You can’t perform that action at this time.
0 commit comments