Skip to content

Commit

Permalink
remove unused implementation query param from titiler endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
solomon-negusse committed Oct 28, 2024
1 parent 148ae02 commit 90825e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions app/routes/titiler/integrated_alerts.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from ...crud.sync_db.tile_cache_assets import get_versions
from ...models.enumerators.tile_caches import TileCacheType
from ...models.enumerators.titiler import IntegratedAlertConfidence, RenderType
from .. import DATE_REGEX, optional_implementation_dependency, raster_xyz
from .. import DATE_REGEX, raster_xyz
from .algorithms.integrated_alerts import IntegratedAlerts
from .readers import AlertsReader

Expand Down Expand Up @@ -68,7 +68,6 @@ async def gfw_integrated_alerts_raster_tile(
IntegratedAlertConfidence.low,
description="Show alerts with at least this confidence level",
),
implementation: str = Depends(optional_implementation_dependency),
) -> Response:
"""GFW Integrated Alerts raster tiles."""

Expand Down
3 changes: 1 addition & 2 deletions app/routes/titiler/umd_glad_dist_alerts.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from titiler.core.utils import render_image

from ...models.enumerators.titiler import AlertConfidence, RenderType
from .. import DATE_REGEX, optional_implementation_dependency, raster_xyz
from .. import DATE_REGEX, raster_xyz
from .algorithms.dist_alerts import DISTAlerts
from .readers import AlertsReader

Expand Down Expand Up @@ -49,7 +49,6 @@ async def glad_dist_alerts_raster_tile(
AlertConfidence.low,
description="Show alerts that are at least of this confidence level",
),
implementation: str = Depends(optional_implementation_dependency),
) -> Response:
"""UMD GLAD DIST alerts raster tiles."""

Expand Down

0 comments on commit 90825e2

Please sign in to comment.