We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
False
._populate1()
1 parent e143ce8 commit 291a468Copy full SHA for 291a468
1 file changed
datajoint/autopopulate.py
@@ -290,7 +290,7 @@ def _populate1(
290
:param suppress_errors: bool if errors should be suppressed and returned
291
:param return_exception_objects: if True, errors must be returned as objects
292
:return: (key, error) when suppress_errors=True,
293
- True if successfully invoke one `make()` call, otherwise None
+ True if successfully invoke one `make()` call, otherwise False
294
"""
295
make = self._make_tuples if hasattr(self, "_make_tuples") else self.make
296
@@ -341,6 +341,8 @@ def _populate1(
341
finally:
342
self.__class__._allow_insert = False
343
344
+ return False
345
+
346
def progress(self, *restrictions, display=False):
347
348
Report the progress of populating the table.
0 commit comments