summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDanglewood <85772166+deeleeramone@users.noreply.github.com>2024-06-15 22:16:30 -0700
committerDanglewood <85772166+deeleeramone@users.noreply.github.com>2024-06-15 22:16:30 -0700
commitd9205c5e681f287b8e7c74d70606f81ed09c7537 (patch)
tree0d2ab4e4ae758c06ce2dcf654960e3d4bb0eb588
parent43dfeae1f87016e0d5af9c9f5ce91fa682126f1e (diff)
description
-rw-r--r--openbb_platform/core/openbb_core/provider/standard_models/options_snapshots.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbb_platform/core/openbb_core/provider/standard_models/options_snapshots.py b/openbb_platform/core/openbb_core/provider/standard_models/options_snapshots.py
index 9149a9b4bab..8c14af09ffd 100644
--- a/openbb_platform/core/openbb_core/provider/standard_models/options_snapshots.py
+++ b/openbb_platform/core/openbb_core/provider/standard_models/options_snapshots.py
@@ -4,7 +4,7 @@ from datetime import (
date as dateType,
datetime,
)
-from typing import Literal, Optional
+from typing import Optional
from pydantic import Field
@@ -34,7 +34,7 @@ class OptionsSnapshotsData(Data):
option_type: str = Field(description="The type of option.")
volume: Optional[int] = Field(
default=None,
- description="Total trade volume from the beginning of the session.",
+ description=DATA_DESCRIPTIONS.get("volume", ""),
)
open_interest: Optional[int] = Field(
default=None,