We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc92c85 commit 6f7ef60Copy full SHA for 6f7ef60
pytensor/misc/frozendict.py
@@ -1,7 +1,6 @@
1
# License : https://github.com/slezica/python-frozendict/blob/master/LICENSE.txt
2
3
4
-import collections
5
import functools
6
import operator
7
from collections.abc import Mapping
@@ -43,11 +42,3 @@ def __hash__(self):
43
42
self._hash = functools.reduce(operator.xor, hashes, 0)
44
45
return self._hash
46
-
47
48
-class FrozenOrderedDict(frozendict):
49
- """
50
- A FrozenDict subclass that maintains key order
51
52
53
- dict_cls = collections.OrderedDict
0 commit comments