From 01107371b76115acb235396120b177e3ce1fa9cb Mon Sep 17 00:00:00 2001 From: belisky Date: Sat, 22 Jul 2023 23:23:13 +0000 Subject: [PATCH] fix: fixes collections module import in getpy.py for python3.10 --- getpy.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/getpy.py b/getpy.py index 4dacead..a106128 100644 --- a/getpy.py +++ b/getpy.py @@ -1,3 +1,6 @@ +import collections.abc +collections.Callable=collections.abc.Callable + from bs4 import BeautifulSoup as bs import os import re