Skip to content

Commit 3b5bd37

Browse files
ArmavicaricardoV94
authored andcommitted
Remove OrderedDict from graph/features
1 parent 103e33d commit 3b5bd37

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pytensor/graph/features.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
import sys
33
import time
44
import warnings
5-
from collections import OrderedDict
65
from functools import partial
76
from io import StringIO
87

@@ -324,7 +323,7 @@ def orderings(self, fgraph):
324323
might be broken for all intents and purposes.
325324
326325
"""
327-
return OrderedDict()
326+
return {}
328327

329328
def clone(self):
330329
"""Create a clone that can be attached to a new `FunctionGraph`.

0 commit comments

Comments
 (0)