From 0576933b16dcf4dd2ae0c5d03862314a80df9dbd Mon Sep 17 00:00:00 2001 From: Izalia Mae Date: Mon, 26 Aug 2024 22:22:29 -0400 Subject: [PATCH] fix linter issue --- relay/http_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/relay/http_client.py b/relay/http_client.py index 26f2ba8..d15f1d9 100644 --- a/relay/http_client.py +++ b/relay/http_client.py @@ -31,7 +31,7 @@ SUPPORTS_HS2019 = { 'sharkey' } -T = TypeVar('T', bound = JsonBase) +T = TypeVar('T', bound = JsonBase[Any]) HEADERS = { 'Accept': f'{MIMETYPES["activity"]}, {MIMETYPES["json"]};q=0.9', 'User-Agent': f'ActivityRelay/{__version__}'