Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
yrkim98 committed Dec 10, 2024
1 parent 9a753be commit ba095df
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/allencell_ml_segmenter/core/file_input_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,9 @@ def _from_directory_slot(self) -> None:
def _update_layer_list(self, event: Optional[NapariEvent] = None) -> None:
existing_selection: List[str] = []
for i in self._image_list.get_checked_rows():
q_list_widget_item: Optional[QListWidgetItem] = self._image_list.item(i)
q_list_widget_item: Optional[QListWidgetItem] = (
self._image_list.item(i)
)
if q_list_widget_item is not None:
existing_selection.append(q_list_widget_item.text())

Expand Down

0 comments on commit ba095df

Please sign in to comment.