Example #1
0
 def __init__(self, values=None):
     # type: (Any) -> None
     self.odict = ordereddict()
     MutableSet.__init__(self)
     if values is not None:
         self |= values  # type: ignore
Example #2
0
 def __init__(self, values=None):
     self.odict = ordereddict()
     MutableSet.__init__(self)
     if values is not None:
         self |= values