summaryrefslogtreecommitdiffstats
path: root/openbb_platform/core/openbb_core/provider/standard_models/futures_historical.py
diff options
context:
space:
mode:
Diffstat (limited to 'openbb_platform/core/openbb_core/provider/standard_models/futures_historical.py')
-rw-r--r--openbb_platform/core/openbb_core/provider/standard_models/futures_historical.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbb_platform/core/openbb_core/provider/standard_models/futures_historical.py b/openbb_platform/core/openbb_core/provider/standard_models/futures_historical.py
index 59336248e0a..4a4a3db07ae 100644
--- a/openbb_platform/core/openbb_core/provider/standard_models/futures_historical.py
+++ b/openbb_platform/core/openbb_core/provider/standard_models/futures_historical.py
@@ -33,8 +33,8 @@ class FuturesHistoricalQueryParams(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()