This is an automated email from the git hooks/post-receive script.
meskio pushed a commit to branch main in repository bridgedb.
commit d266794a0da0b11f21d0811a5d4f711010e15e51 Author: meskio meskio@torproject.org AuthorDate: Thu Dec 15 15:46:03 2022 +0100
Update import that has being moved in python 3.10 --- bridgedb/proxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bridgedb/proxy.py b/bridgedb/proxy.py index 654b40c..5e13d24 100644 --- a/bridgedb/proxy.py +++ b/bridgedb/proxy.py @@ -12,7 +12,7 @@ """Classes for finding and managing lists of open proxies."""
from __future__ import print_function -from collections import MutableSet +from collections.abc import MutableSet from functools import update_wrapper from functools import wraps