summaryrefslogtreecommitdiffstats
path: root/openbb_platform/core/openbb_core/provider/standard_models/historical_splits.py
diff options
context:
space:
mode:
Diffstat (limited to 'openbb_platform/core/openbb_core/provider/standard_models/historical_splits.py')
-rw-r--r--openbb_platform/core/openbb_core/provider/standard_models/historical_splits.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbb_platform/core/openbb_core/provider/standard_models/historical_splits.py b/openbb_platform/core/openbb_core/provider/standard_models/historical_splits.py
index 46ab2229764..504e3a92d53 100644
--- a/openbb_platform/core/openbb_core/provider/standard_models/historical_splits.py
+++ b/openbb_platform/core/openbb_core/provider/standard_models/historical_splits.py
@@ -19,8 +19,8 @@ class HistoricalSplitsQueryParams(QueryParams):
@field_validator("symbol", mode="before", check_fields=False)
@classmethod
- def upper_symbol(cls, v: str) -> str:
- """Convert symbol to uppercase."""
+ def to_upper(cls, v: str) -> str:
+ """Convert field to uppercase."""
return v.upper()