Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
botanical committed Oct 22, 2024
1 parent 7afc9ab commit da2d01e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion config.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class vedaAppSettings(BaseSettings):

disable_default_apigw_endpoint: Optional[bool] = Field(
False,
description="Boolean to disable default API gateway endpoints for stac, raster, and ingest APIs. Defaults to false."
description="Boolean to disable default API gateway endpoints for stac, raster, and ingest APIs. Defaults to false.",
)

def cdk_env(self) -> dict:
Expand Down
2 changes: 1 addition & 1 deletion ingest_api/infrastructure/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ class IngestorConfig(BaseSettings):

disable_default_apigw_endpoint: Optional[bool] = Field(
False,
description="Boolean to disable default API gateway endpoints for stac, raster, and ingest APIs. Defaults to false."
description="Boolean to disable default API gateway endpoints for stac, raster, and ingest APIs. Defaults to false.",
)

class Config:
Expand Down
2 changes: 1 addition & 1 deletion raster_api/infrastructure/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class vedaRasterSettings(BaseSettings):
)
disable_default_apigw_endpoint: Optional[bool] = Field(
False,
description="Boolean to disable default API gateway endpoints for stac, raster, and ingest APIs. Defaults to false."
description="Boolean to disable default API gateway endpoints for stac, raster, and ingest APIs. Defaults to false.",
)

class Config:
Expand Down
2 changes: 1 addition & 1 deletion stac_api/infrastructure/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class vedaSTACSettings(BaseSettings):
)
disable_default_apigw_endpoint: Optional[bool] = Field(
False,
description="Boolean to disable default API gateway endpoints for stac, raster, and ingest APIs. Defaults to false."
description="Boolean to disable default API gateway endpoints for stac, raster, and ingest APIs. Defaults to false.",
)

@root_validator
Expand Down

0 comments on commit da2d01e

Please sign in to comment.