Skip to content

Commit b624ee6

Browse files
committed
Reformat, remove vestigial line escape
1 parent c850f96 commit b624ee6

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/workflows/recipe/__init__.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from __future__ import annotations
22

3-
import logging
43
import functools
4+
import logging
55
from collections.abc import Callable
66
from typing import Any
77

@@ -17,7 +17,7 @@
1717
"wrap_subscribe_broadcast",
1818
]
1919

20-
logger = logging.getLogger('workflows.recipe')
20+
logger = logging.getLogger("workflows.recipe")
2121

2222

2323
def _wrap_subscription(
@@ -79,8 +79,10 @@ def unwrap_recipe(header, message):
7979
# "First 1000 characters of header:\n%s\n" + \
8080
# "First 1000 characters of message:\n%s",
8181
# str(header)[:1000], str(message)[:1000])
82-
logger.error("The input to this service is not a wrapped recipe. " \
83-
"Unable to process incoming message.")
82+
logger.error(
83+
"The input to this service is not a wrapped recipe. "
84+
"Unable to process incoming message."
85+
)
8486
transport_layer.nack(header)
8587

8688
if mangle_for_receiving:

0 commit comments

Comments
 (0)