File tree 1 file changed +4
-4
lines changed
ogc_api_processes_fastapi
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(
100
100
fastapi.FastAPI
101
101
FastAPI application including OGC API - Processes compliant exceptions handlers.
102
102
"""
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
107
107
return app
You can’t perform that action at this time.
0 commit comments