MCPcopy Index your code
hub / github.com/DeepLabCut/DeepLabCut / __init__

Method __init__

deeplabcut/gui/widgets.py:65–73  ·  view source on GitHub ↗
(self, parent=None)

Source from the content-addressed store, hash-verified

63
64class DragDropListView(QtWidgets.QListView):
65 def __init__(self, parent=None):
66 super().__init__(parent)
67 self.parent = parent
68 self.setAcceptDrops(True)
69 self.setDropIndicatorShown(True)
70 self.setDragDropMode(QtWidgets.QAbstractItemView.InternalMove)
71 self.model = QStandardItemModel(self)
72 self.setModel(self.model)
73 self._default_style = self.styleSheet()
74
75 @property
76 def items(self):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected