summaryrefslogtreecommitdiffstats
path: root/openbb_platform/core/openbb_core/provider/standard_models/index_info.py
diff options
context:
space:
mode:
Diffstat (limited to 'openbb_platform/core/openbb_core/provider/standard_models/index_info.py')
-rw-r--r--openbb_platform/core/openbb_core/provider/standard_models/index_info.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbb_platform/core/openbb_core/provider/standard_models/index_info.py b/openbb_platform/core/openbb_core/provider/standard_models/index_info.py
index b1a3778eb00..07dd1e3c79e 100644
--- a/openbb_platform/core/openbb_core/provider/standard_models/index_info.py
+++ b/openbb_platform/core/openbb_core/provider/standard_models/index_info.py
@@ -19,8 +19,8 @@ class IndexInfoQueryParams(QueryParams):
@field_validator("symbol")
@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()