diff --git a/build/pypi/openbb_platform/nightly.py b/build/pypi/openbb_platform/nightly.py index 6212f80e8825..fc002f5cb8aa 100644 --- a/build/pypi/openbb_platform/nightly.py +++ b/build/pypi/openbb_platform/nightly.py @@ -10,7 +10,10 @@ SUB_PACKAGES = {} DEPENDENCIES: Dict[str, Any] = {} -PLUGINS = {"openbb_core_extension": {}, "openbb_provider_extension": {}} +PLUGINS: Dict[str, Dict] = { + "openbb_core_extension": {}, + "openbb_provider_extension": {}, +} CMD = [sys.executable, "-m", "poetry", "build"] @@ -44,7 +47,7 @@ def gather_metadata(sub_path: str): def build(): """Build the Platform package.""" - for sub_path in ["platform", "providers", "extensions"]: + for sub_path in ["core", "providers", "extensions"]: gather_metadata(sub_path) # need to pop these from the dependencies