We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents feb5832 + ca408b8 commit a7ec757Copy full SHA for a7ec757
1 file changed
nameparser/config/__init__.py
@@ -29,7 +29,7 @@
29
unexpected results. See `Customizing the Parser <customize.html>`_.
30
"""
31
from __future__ import unicode_literals
32
-import collections
+from collections.abc import Set
33
import sys
34
35
from nameparser.util import binary_type
@@ -45,7 +45,7 @@
45
46
DEFAULT_ENCODING = 'UTF-8'
47
48
-class SetManager(collections.Set):
+class SetManager(Set):
49
'''
50
Easily add and remove config variables per module or instance. Subclass of
51
``collections.Set``.
0 commit comments