MCPcopy Index your code
hub / github.com/plotly/dash / __init__

Method __init__

dash/_utils.py:278–281  ·  view source on GitHub ↗
(self, *args)

Source from the content-addressed store, hash-verified

276
277class OrderedSet(abc.MutableSet):
278 def __init__(self, *args):
279 self._data = []
280 for i in args:
281 self.add(i)
282
283 def add(self, value):
284 if value not in self._data:

Callers

nothing calls this directly

Calls 1

addMethod · 0.95

Tested by

no test coverage detected