Skip to content

Commit

Permalink
fix: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ciaransweet committed Aug 2, 2024
1 parent f4eaa80 commit 50c9015
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ingest_api/infrastructure/construct.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def __init__(
"stac-ingestor-api-url",
export_name=f"{stack_name}-stac-ingestor-api-url",
value=self.api.url,
key="ingestapiurl"
key="ingestapiurl",
)

register_ssm_parameter(
Expand Down
2 changes: 1 addition & 1 deletion raster_api/infrastructure/construct.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def __init__(
"raster-api",
value=self.raster_api.url,
export_name=f"{stack_name}-raster-url",
key="rasterapiurl"
key="rasterapiurl",
)
CfnOutput(self, "raster-api-arn", value=veda_raster_function.function_arn)

Expand Down
2 changes: 1 addition & 1 deletion s3_website/infrastructure/construct.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,5 @@ def __init__(
self,
"bucket-website",
value=f"https://{self.bucket.bucket_website_domain_name}",
key="stacbrowserurl"
key="stacbrowserurl",
)
2 changes: 1 addition & 1 deletion stac_api/infrastructure/construct.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,5 +120,5 @@ def __init__(
"stac-api",
value=self.stac_api.url,
export_name=f"{stack_name}-stac-url",
key="stacapiurl"
key="stacapiurl",
)

0 comments on commit 50c9015

Please sign in to comment.