Skip to content

Commit 6f7ef60

Browse files
ArmavicaricardoV94
authored andcommitted
Remove unused FrozenOrderedDict
1 parent dc92c85 commit 6f7ef60

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

pytensor/misc/frozendict.py

-9
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# License : https://github.com/slezica/python-frozendict/blob/master/LICENSE.txt
22

33

4-
import collections
54
import functools
65
import operator
76
from collections.abc import Mapping
@@ -43,11 +42,3 @@ def __hash__(self):
4342
self._hash = functools.reduce(operator.xor, hashes, 0)
4443

4544
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

Comments
 (0)