Skip to content

Commit

Permalink
🚚 Rename Registry to Record
Browse files Browse the repository at this point in the history
  • Loading branch information
fredericenard committed Jul 18, 2024
1 parent 94d5cbc commit 9db1a70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lamindb_setup/_schema_metadata_legacy.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ def _get_modules_metadata(self):
for model in self._get_schema_module(
module_name
).models.__dict__.values()
if model.__class__.__name__ == "RegistryMeta"
and model.__name__ not in ["Registry", "ORM"]
if model.__class__.__name__ == "RecordMeta"
and model.__name__ not in ["Record", "ORM"]
and not model._meta.abstract
and model.__get_schema_name__() == module_name
}
Expand Down

0 comments on commit 9db1a70

Please sign in to comment.