Skip to content

Commit

Permalink
Merge pull request #175 from developmentseed/patch/make-deployment-py…
Browse files Browse the repository at this point in the history
…thon3.9-friendly

update typing information for python 3.9
  • Loading branch information
vincentsarago authored Jan 19, 2024
2 parents 3c5a623 + 21f33ec commit 131e5f1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions infrastructure/aws/cdk/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,10 @@ class eoVectorSettings(BaseSettings):
class eoStacBrowserSettings(BaseSettings):
"""STAC browser settings"""

stac_browser_github_tag: None | str = "v3.1.0"
stac_catalog_url: None | str = None
config_file_path: None | str = "browser_config.js"
stac_browser_github_tag: str = "v3.1.0"
stac_catalog_url: str
config_file_path: str = "browser_config.js"

model_config = {
"env_prefix": "CDK_EOAPI_BROWSER_",
"env_file": ".env",
Expand Down

0 comments on commit 131e5f1

Please sign in to comment.