diff --git a/app/__main__.py b/app/__main__.py index e286647e..2407e00e 100644 --- a/app/__main__.py +++ b/app/__main__.py @@ -375,7 +375,7 @@ def cli_input_json(name: str, file: typer.FileText) -> None: # https://typer.tiangolo.com/tutorial/commands/callback/ @app.callback() -def cli(*, quiet: bool = typer.Option(False, "--quiet", "-q")) -> None: # noqa: FBT003 +def cli(*, quiet: bool = typer.Option(False, "--quiet", "-q")) -> None: # noqa: FBT003 # false positive if quiet: state["quiet"] = True diff --git a/app/serializers.py b/app/serializers.py index 2086bfdf..1a52c2de 100644 --- a/app/serializers.py +++ b/app/serializers.py @@ -13,7 +13,7 @@ class ApplicationResponse(BaseModel): award: models.Award # IAward lender: models.Lender | None = None # ILender documents: list[models.BorrowerDocumentBase] = Field(default_factory=list) # IBorrowerDocument - creditProduct: models.CreditProduct | None = None # ICreditProduct # noqa: N815 + creditProduct: models.CreditProduct | None = None # ICreditProduct # noqa: N815 # backwards-compatibility class CreditProductListResponse(BaseModel):