Skip to content

Commit

Permalink
Move MyPy github_event type ignore to a new line
Browse files Browse the repository at this point in the history
  • Loading branch information
webknjaz committed Aug 26, 2024
1 parent cab1ff2 commit 09b5e5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions octomachinery/routing/webhooks_dispatcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,9 @@ async def route_github_event( # type: ignore[return] # FIXME
)
delivery_id_msg = (
'' if is_gh_action
else ' (Delivery ID: ' # type: ignore[attr-defined]
else ' (Delivery ID: '
# FIXME: # pylint: disable=fixme
f'{github_event.delivery_id!s})'
f'{github_event.delivery_id!s})' # type: ignore[attr-defined]
)
logger.debug(
'The payload of "%s" event%s is: %r',
Expand Down

0 comments on commit 09b5e5c

Please sign in to comment.