We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents af2006c + 92bfd4a commit e349999Copy full SHA for e349999
datajoint/schemas.py
@@ -412,6 +412,7 @@ def save(self, python_filename=None):
412
413
:return: a string containing the body of a complete Python module defining this schema.
414
"""
415
+ self.connection.dependencies.load()
416
self._assert_exists()
417
module_count = itertools.count()
418
# add virtual modules for referenced modules with names vmod0, vmod1, ...
@@ -477,6 +478,7 @@ def list_tables(self):
477
478
479
:return: A list of table names from the database schema.
480
481
482
return [
483
t
484
for d, t in (
0 commit comments