File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
ogc_api_processes_fastapi Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -100,8 +100,8 @@ def include_exception_handlers(
100100 fastapi.FastAPI
101101 FastAPI application including OGC API - Processes compliant exceptions handlers.
102102 """
103- app .add_exception_handler (NoSuchProcess , exception_handler )
104- app .add_exception_handler (NoSuchJob , exception_handler )
105- app .add_exception_handler (ResultsNotReady , exception_handler )
106- app .add_exception_handler (JobResultsFailed , exception_handler )
103+ app .add_exception_handler (NoSuchProcess , exception_handler ) # type: ignore
104+ app .add_exception_handler (NoSuchJob , exception_handler ) # type: ignore
105+ app .add_exception_handler (ResultsNotReady , exception_handler ) # type: ignore
106+ app .add_exception_handler (JobResultsFailed , exception_handler ) # type: ignore
107107 return app
You can’t perform that action at this time.
0 commit comments