File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -78,6 +78,7 @@ def __init__(self, api):
78
78
79
79
class HTTPInterfaceAPI (InterfaceAPI ):
80
80
"""Defines the HTTP interface specific API"""
81
+
81
82
__slots__ = (
82
83
"routes" ,
83
84
"versions" ,
Original file line number Diff line number Diff line change 27
27
from falcon import HTTP_METHODS
28
28
29
29
import hug .api
30
- from hug .routing import CLIRouter as cli # noqa: N813
30
+ from hug .routing import CLIRouter as cli # noqa: N813
31
31
from hug .routing import ExceptionRouter as exception # noqa: N813
32
- from hug .routing import LocalRouter as local # noqa: N813
33
- from hug .routing import NotFoundRouter as not_found # noqa: N813
34
- from hug .routing import SinkRouter as sink # noqa: N813
35
- from hug .routing import StaticRouter as static # noqa: N813
36
- from hug .routing import URLRouter as http # noqa: N813
32
+ from hug .routing import LocalRouter as local # noqa: N813
33
+ from hug .routing import NotFoundRouter as not_found # noqa: N813
34
+ from hug .routing import SinkRouter as sink # noqa: N813
35
+ from hug .routing import StaticRouter as static # noqa: N813
36
+ from hug .routing import URLRouter as http # noqa: N813
37
37
38
38
39
39
class Object (http ):
You can’t perform that action at this time.
0 commit comments