File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -478,13 +478,13 @@ def matchText(self, text: str) -> bool:
478478 inputLinksChanged = Signal ()
479479 outputLinksChanged = Signal ()
480480
481- # Whether the attribute is a direct link to another attribute.
481+ # Whether the attribute is a link to another attribute.
482482 isLink = Property (bool , _isLink , notify = inputLinksChanged )
483- # The direct upstream connected root attribute.
483+ # The upstream connected root attribute.
484484 inputRootLink = Property (Variant , lambda self : self ._getInputLink (recursive = True ), notify = inputLinksChanged )
485- # The direct upstream connected attribute.
485+ # The upstream connected attribute.
486486 inputLink = Property (BaseObject , _getInputLink , notify = inputLinksChanged )
487- # The list of direct downstream connected attributes.
487+ # The list of downstream connected attributes.
488488 outputLinks = Property (Variant , _getOutputLinks , notify = outputLinksChanged )
489489 # The list of upstream connected attributes for the attribute or any of its elements.
490490 allInputLinks = Property (Variant , _getAllInputLinks , notify = inputLinksChanged )
You can’t perform that action at this time.
0 commit comments