Skip to content

Commit 09b5e5c

Browse files
committed
Move MyPy github_event type ignore to a new line
1 parent cab1ff2 commit 09b5e5c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

octomachinery/routing/webhooks_dispatcher.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,9 @@ async def route_github_event( # type: ignore[return] # FIXME
118118
)
119119
delivery_id_msg = (
120120
'' if is_gh_action
121-
else ' (Delivery ID: ' # type: ignore[attr-defined]
121+
else ' (Delivery ID: '
122122
# FIXME: # pylint: disable=fixme
123-
f'{github_event.delivery_id!s})'
123+
f'{github_event.delivery_id!s})' # type: ignore[attr-defined]
124124
)
125125
logger.debug(
126126
'The payload of "%s" event%s is: %r',

0 commit comments

Comments
 (0)