From 09b5e5ca2f7eb1f7d7b6f974392456a25411a11a Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Mon, 26 Aug 2024 12:05:57 +0200 Subject: [PATCH] Move MyPy `github_event` type ignore to a new line --- octomachinery/routing/webhooks_dispatcher.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/octomachinery/routing/webhooks_dispatcher.py b/octomachinery/routing/webhooks_dispatcher.py index cb35e83..df018f9 100644 --- a/octomachinery/routing/webhooks_dispatcher.py +++ b/octomachinery/routing/webhooks_dispatcher.py @@ -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',