From 24d539a7891017beba4e9522173b7d1fb22de7f7 Mon Sep 17 00:00:00 2001 From: sudosnok Date: Sun, 27 Mar 2022 10:49:22 +0100 Subject: [PATCH] Small typo --- Github/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Github/http.py b/Github/http.py index 3d2296e..b3cb3d7 100644 --- a/Github/http.py +++ b/Github/http.py @@ -51,7 +51,7 @@ class Paginator: self.session = session self.response = response self.should_paginate = bool(self.response.headers.get('Link', False)) - types: dict[str, User | ...] = { + types: dict[str, APIOBJECT] = { 'user': User, } self.target_type = types[target_type]