From 430b6d4ce33779e449d0553f2721ca3ac2a45667 Mon Sep 17 00:00:00 2001 From: Sunny Sun <38218185+sunnyosun@users.noreply.github.com> Date: Thu, 10 Oct 2024 13:30:32 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20Fix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lamindb/core/schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lamindb/core/schema.py b/lamindb/core/schema.py index 43041a7e5..de502a7c4 100644 --- a/lamindb/core/schema.py +++ b/lamindb/core/schema.py @@ -11,7 +11,7 @@ def get_schemas_modules(instance: str | None) -> set[str]: - if instance is None: + if instance is None or instance == "default": schema_modules = ln_setup.settings.instance.schema schema_modules.add("core") return schema_modules