Files
OpenBB/cli/openbb_cli/argparse_translator/argparse_argument.py
Danglewood 9f0d592839 [Feature] Remove Python 3.9 (#7235)
* remove python 3.9 support and code

* black

* more cli lint

* more linting

* more lint

* fix for tests

* docstring grammar police

* add lock to to build function to avoid async import race conditions

* grammar police

* lots more linting

* relock
2025-10-10 23:16:16 +00:00

61 lines
1.7 KiB
Python

"""Pydantic models for argparse arguments and argument groups."""
from typing import (
Any,
Literal,
)
from pydantic import BaseModel, model_validator
SEP = "__"
class ArgparseArgumentModel(BaseModel):
"""Pydantic model for an argparse argument."""
name: str
type: Any
dest: str
default: Any
required: bool
action: Literal["store_true", "store"]
help: str | None
nargs: Literal["+"] | None
choices: tuple | None
@model_validator(mode="after") # type: ignore
@classmethod
def validate_action(cls, values: "ArgparseArgumentModel"):
"""Validate the action based on the type."""
if values.type is bool and values.action != "store_true":
raise ValueError('If type is bool, action must be "store_true"')
return values
@model_validator(mode="after") # type: ignore
@classmethod
def remove_props_on_store_true(cls, values: "ArgparseArgumentModel"):
"""Remove type, nargs, and choices if action is store_true."""
if values.action == "store_true":
values.type = None
values.nargs = None
values.choices = None
return values
# override
def model_dump(self, **kwargs):
"""Override the model_dump method to remove empty choices."""
res = super().model_dump(**kwargs)
# Check if choices is present and if it's an empty tuple remove it
if "choices" in res and not res["choices"]:
del res["choices"]
return res
class ArgparseArgumentGroupModel(BaseModel):
"""Pydantic model for a custom argument group."""
name: str
arguments: list[ArgparseArgumentModel]