Skip to content

Commit

Permalink
Default to collections.abc to silence warning
Browse files Browse the repository at this point in the history
  • Loading branch information
remram44 committed May 15, 2023
1 parent fa6360b commit d3bce3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions reprounzip/reprounzip/orderedset.py
Expand Up @@ -22,9 +22,9 @@
# THE SOFTWARE.

try:
from collections import MutableSet
except ImportError:
from collections.abc import MutableSet
except ImportError:
from collections import MutableSet


class OrderedSet(MutableSet):
Expand Down

0 comments on commit d3bce3e

Please sign in to comment.