Skip to content

Commit b92b496

Browse files
committed
chore: run tox -e reformat
1 parent 58eca02 commit b92b496

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

falcon/routing/util.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,11 @@
1717
from __future__ import annotations
1818

1919
from typing import TYPE_CHECKING
20+
import warnings
2021

2122
from falcon import constants
2223
from falcon import responders
2324

24-
import warnings
25-
2625
if TYPE_CHECKING:
2726
from falcon._typing import MethodDict
2827

@@ -81,7 +80,8 @@ def map_http_methods(resource: object, suffix: str | None = None) -> MethodDict:
8180
)
8281
else:
8382
warnings.warn(
84-
f'No responders (on_get, on_post, etc.) found for the specified resource: {resource_name}'
83+
'No responders (on_get, on_post, etc.) '
84+
+ f'found for the specified resource: {resource_name}'
8585
)
8686

8787
return method_map

0 commit comments

Comments
 (0)