From fa2353b67e9f33ffaf250d95bd96564dcb0593fb Mon Sep 17 00:00:00 2001 From: Jeremy Klein Date: Thu, 3 Oct 2024 20:24:29 -0700 Subject: [PATCH] pyre --- .pyre_configuration | 2 +- .../event_handlers/__tests__/nip47_event_handler_test.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.pyre_configuration b/.pyre_configuration index 0aa4b99..49dec18 100644 --- a/.pyre_configuration +++ b/.pyre_configuration @@ -4,6 +4,6 @@ "." ], "exclude": [ - "nwc-frontend" + ".*\/node_modules\/.*" ] } diff --git a/nwc_backend/event_handlers/__tests__/nip47_event_handler_test.py b/nwc_backend/event_handlers/__tests__/nip47_event_handler_test.py index e9baaeb..c0a9367 100644 --- a/nwc_backend/event_handlers/__tests__/nip47_event_handler_test.py +++ b/nwc_backend/event_handlers/__tests__/nip47_event_handler_test.py @@ -98,9 +98,9 @@ def _load_encrypted_content( def validate_response_event( self, - response_event: Any, + response_event: Any, # pyre-ignore[2] request_event_id: EventId, - expect_nip44: bool = True, # pyre-ignore[2] + expect_nip44: bool = True, ) -> dict[str, Any]: assert isinstance(response_event, Event) assert response_event.verify()