Skip to content

Commit

Permalink
Properly import from containers
Browse files Browse the repository at this point in the history
Fixed python 3 deprecation warning
  • Loading branch information
Dr15Jones committed Nov 29, 2021
1 parent 6e40811 commit 2111fb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions FWCore/ParameterSet/python/OrderedSet.py
Expand Up @@ -24,9 +24,9 @@
# Copied from URL http://code.activestate.com/recipes/576694-orderedset/
# on 15 November 2016

import collections
import collections.abc

class OrderedSet(collections.MutableSet):
class OrderedSet(collections.abc.MutableSet):

def __init__(self, iterable=None):
self.end = end = []
Expand Down

0 comments on commit 2111fb1

Please sign in to comment.