Skip to content

Commit

Permalink
fix: remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
botanical committed Aug 16, 2024
1 parent 4b18b20 commit 0cc613c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ingest_api/infrastructure/construct.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import os
import typing
from typing import Dict, Optional, Union

from aws_cdk import CfnOutput, Duration, RemovalPolicy, Stack
Expand All @@ -17,6 +16,7 @@

from .config import IngestorConfig


class ApiConstruct(Construct):
def __init__(
self,
Expand Down
3 changes: 1 addition & 2 deletions raster_api/infrastructure/construct.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
"""CDK Constrcut for a Lambda based TiTiler API with pgstac extension."""

import os
import typing
from typing import Optional

from aws_cdk import (
CfnOutput,
Expand All @@ -19,6 +17,7 @@

from .config import veda_raster_settings


class RasterApiLambdaConstruct(Construct):
"""CDK Construct for a Lambda based TiTiler API with pgstac extension."""

Expand Down
3 changes: 1 addition & 2 deletions stac_api/infrastructure/construct.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
"""CDK Construct for a Lambda backed API implementing stac-fastapi."""

import os
import typing
from typing import Optional

from aws_cdk import (
CfnOutput,
Expand All @@ -18,6 +16,7 @@

from .config import veda_stac_settings


class StacApiLambdaConstruct(Construct):
"""CDK Construct for a Lambda backed API implementing stac-fastapi."""

Expand Down

0 comments on commit 0cc613c

Please sign in to comment.