File tree 2 files changed +2
-3
lines changed
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -322,7 +322,7 @@ def make_all(
322
322
output_storage = None ,
323
323
storage_map = None ,
324
324
):
325
- fgraph : Any = self .fgraph
325
+ fgraph = self .fgraph
326
326
order = self .schedule (fgraph )
327
327
no_recycling = self .no_recycling
328
328
@@ -347,7 +347,7 @@ def make_all(
347
347
thunks [- 1 ].outputs = [storage_map [v ] for v in node .outputs ]
348
348
349
349
computed , last_user = gc_helper (order )
350
- post_thunk_old_storage : Any = [] if self .allow_gc else None
350
+ post_thunk_old_storage = [] if self .allow_gc else None
351
351
352
352
for node in order :
353
353
if self .allow_gc :
Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ pytensor/compile/mode.py
6
6
pytensor/compile/sharedvalue.py
7
7
pytensor/graph/rewriting/basic.py
8
8
pytensor/ifelse.py
9
- pytensor/link/basic.py
10
9
pytensor/link/numba/dispatch/elemwise.py
11
10
pytensor/link/numba/dispatch/scan.py
12
11
pytensor/printing.py
You can’t perform that action at this time.
0 commit comments