mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-07 13:05:49 +08:00
Use the more idiomatic list().
This commit is contained in:
@@ -45,7 +45,7 @@ class OverlayPlugin(Plugin):
|
||||
self._overlay_plot = None
|
||||
self._overlay = None
|
||||
self.cmap = None
|
||||
self.color_names = [c for c in self.colors.keys()]
|
||||
self.color_names = list(self.colors.keys())
|
||||
|
||||
def attach(self, image_viewer):
|
||||
super(OverlayPlugin, self).attach(image_viewer)
|
||||
|
||||
@@ -232,7 +232,7 @@ class ComboBox(BaseWidget):
|
||||
self.name_label.setAlignment(QtCore.Qt.AlignLeft)
|
||||
|
||||
self._combo_box = QtGui.QComboBox()
|
||||
self._combo_box.addItems([i for i in items])
|
||||
self._combo_box.addItems(list(items))
|
||||
|
||||
self.layout = QtGui.QHBoxLayout(self)
|
||||
self.layout.addWidget(self.name_label)
|
||||
|
||||
Reference in New Issue
Block a user