From ba2dfa911875e79db6135332233ce446002495d5 Mon Sep 17 00:00:00 2001 From: Allen Porter Date: Mon, 7 Feb 2022 21:25:12 -0800 Subject: [PATCH] Update for python3.10 --- nest/nest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nest/nest.py b/nest/nest.py index da80500..05f5f8f 100644 --- a/nest/nest.py +++ b/nest/nest.py @@ -156,7 +156,7 @@ def _cache(self): def _callback(self, res): if self.auth_callback is not None and isinstance(self.auth_callback, - collections.Callable): + collections.abc.Callable): self.auth_callback(res) def login(self, headers=None):