Skip to content

Commit 53816b1

Browse files
committed
Quickfix
1 parent ba1e15a commit 53816b1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Deeploy/DeeployTypes.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -363,16 +363,16 @@ def get_aliases_of(self):
363363
else:
364364
return list()
365365

366-
def has_live_ancestors(self, ctxt: NetworkContext) -> bool:
367-
"""Checks whether this VariableBuffer has any live ancestors, i.e. buffers that are still live and are aliased by this buffer.
366+
def has_live_aliases(self, ctxt: NetworkContext) -> bool:
367+
"""Checks whether this VariableBuffer has any live aliases, i.e. buffers that are still live and are aliased by this buffer.
368368
Parameters
369369
----------
370370
ctxt : NetworkContext
371371
Current NetworkContext
372372
Returns
373373
-------
374374
bool
375-
True if this VariableBuffer has any live ancestors, False otherwise
375+
True if this VariableBuffer has any live aliases, False otherwise
376376
"""
377377
# Do a breadth-first search across the aliasing double-linked list
378378
live = self._live

0 commit comments

Comments
 (0)