Closed pnuu closed 3 years ago
The current import from collections import Mapping raises a DeprecationWarning stating that it won't work in Python 3.9. This fixes the import.
from collections import Mapping
DeprecationWarning
git diff origin/master **/*py | flake8 --diff
For tests to pass, #56 needs to be merged first and this PR to be updated.
The relevant complaint is now removed. Merging, and fixing the failing test of test_satpass.py on Python 3.7 in another PR.
test_satpass.py
The current import
from collections import Mapping
raises aDeprecationWarning
stating that it won't work in Python 3.9. This fixes the import.git diff origin/master **/*py | flake8 --diff