Skip to content

Commit c1bffde

Browse files
committed
fix: lint errors
1 parent 239d017 commit c1bffde

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

raster_api/runtime/src/app.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,9 +206,10 @@ async def lifespan(app: FastAPI):
206206
# Colormaps endpoints
207207
###############################################################################
208208
# Set supported colormaps to be the modified cmap list with added colormaps
209-
cmaps = ColorMapFactory(supported_colormaps = cmap)
209+
cmaps = ColorMapFactory(supported_colormaps=cmap)
210210
app.include_router(cmaps.router, tags=["ColorMaps"])
211211

212+
212213
@app.get("/healthz", description="Health Check", tags=["Health Check"])
213214
def ping():
214215
"""Health check."""

0 commit comments

Comments
 (0)