passlib: fix MutableMapping import (#7479)

Found by #7478
This commit is contained in:
Jelle Zijlstra
2022-03-12 19:18:48 -08:00
committed by GitHub
parent 3a9abf850a
commit c89236d1cf

View File

@@ -1,5 +1,5 @@
from abc import abstractmethod
from collections import MutableMapping
from collections.abc import MutableMapping
from typing import Any
class SequenceGenerator: