summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--openbb_platform/core/openbb_core/provider/standard_models/economic_calendar.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/openbb_platform/core/openbb_core/provider/standard_models/economic_calendar.py b/openbb_platform/core/openbb_core/provider/standard_models/economic_calendar.py
index 7e9659276a1..67a268ce2b2 100644
--- a/openbb_platform/core/openbb_core/provider/standard_models/economic_calendar.py
+++ b/openbb_platform/core/openbb_core/provider/standard_models/economic_calendar.py
@@ -38,7 +38,9 @@ class EconomicCalendarData(Data):
country: Optional[str] = Field(default=None, description="Country of event.")
category: Optional[str] = Field(default=None, description="Category of event.")
event: Optional[str] = Field(default=None, description="Event name.")
- importance: Optional[str] = Field(default=None, description="The importance level for the event.")
+ importance: Optional[str] = Field(
+ default=None, description="The importance level for the event."
+ )
source: Optional[str] = Field(default=None, description="Source of the data.")
currency: Optional[str] = Field(default=None, description="Currency of the data.")
unit: Optional[str] = Field(default=None, description="Unit of the data.")