Skip to content

Commit 575fc46

Browse files
authored
added doc string
1 parent a64e209 commit 575fc46

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

NodeGraphQt/widgets/node_tree.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
class BaseNodeTreeItem(QtWidgets.QTreeWidgetItem):
1212

1313
def __eq__(self, other):
14+
"""
15+
Workaround fix for QTreeWidgetItem "operator not implemented error".
16+
see link: https://bugreports.qt.io/browse/PYSIDE-74
17+
"""
1418
return id(self) == id(other)
1519

1620

0 commit comments

Comments
 (0)