summaryrefslogtreecommitdiffstats
path: root/openbb_platform/core/openbb_core/provider/standard_models/upcoming_release_days.py
diff options
context:
space:
mode:
authorDanglewood <85772166+deeleeramone@users.noreply.github.com>2024-05-25 13:33:51 -0700
committerGitHub <noreply@github.com>2024-05-25 13:33:51 -0700
commit2d58764a7b15c7e2b8c4408ada76069042808cbe (patch)
treef1191af101f3901931fadcc4c1b5108541ddf7e9 /openbb_platform/core/openbb_core/provider/standard_models/upcoming_release_days.py
parentd85eedf397ce6083ed36b1933452d65f56f77fdf (diff)
parent5ff4d8907ce2fd0c2bd59fd1c6a0daae4656c43b (diff)
Merge branch 'develop' into feature/yfinance-options-chainsfeature/yfinance-options-chains
Diffstat (limited to 'openbb_platform/core/openbb_core/provider/standard_models/upcoming_release_days.py')
-rw-r--r--openbb_platform/core/openbb_core/provider/standard_models/upcoming_release_days.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/openbb_platform/core/openbb_core/provider/standard_models/upcoming_release_days.py b/openbb_platform/core/openbb_core/provider/standard_models/upcoming_release_days.py
deleted file mode 100644
index 34560c90e5d..00000000000
--- a/openbb_platform/core/openbb_core/provider/standard_models/upcoming_release_days.py
+++ /dev/null
@@ -1,23 +0,0 @@
-"""Upcoming Release Days Standard Model."""
-
-from datetime import date as dateType
-
-from pydantic import Field
-
-from openbb_core.provider.abstract.data import Data
-from openbb_core.provider.abstract.query_params import QueryParams
-from openbb_core.provider.utils.descriptions import DATA_DESCRIPTIONS
-
-
-class UpcomingReleaseDaysQueryParams(QueryParams):
- """Upcoming Release Days Query."""
-
-
-class UpcomingReleaseDaysData(Data):
- """Upcoming Release Days Data."""
-
- symbol: str = Field(description=DATA_DESCRIPTIONS.get("symbol", ""))
- name: str = Field(description="The full name of the asset.")
- exchange: str = Field(description="The exchange the asset is traded on.")
- release_time_type: str = Field(description="The type of release time.")
- release_date: dateType = Field(description="The date of the release.")