Skip to content

Commit 2a6b57b

Browse files
committed
remove # type: ignore for RequestHandler classes
1 parent 60e895b commit 2a6b57b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

oaff/app/oaff/app/request_handlers/conformance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from oaff.app.responses.response_format import ResponseFormat
88

99

10-
class ConformanceRequestHandler(RequestHandler): # type: ignore[no-redef]
10+
class ConformanceRequestHandler(RequestHandler):
1111
@classmethod
1212
def type_name(cls) -> str:
1313
return ConformanceRequest.__name__

oaff/app/oaff/app/request_handlers/landing_page.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from oaff.app.settings import OPENAPI_OGC_TYPE
1313

1414

15-
class LandingPageRequestHandler(RequestHandler): # type: ignore[no-redef]
15+
class LandingPageRequestHandler(RequestHandler):
1616
@classmethod
1717
def type_name(cls) -> str:
1818
return LandingPageRequest.__name__

0 commit comments

Comments
 (0)