Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
yrkim98 committed Jan 29, 2025
1 parent a45fbb2 commit f2889fb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/allencell_ml_segmenter/thresholding/thresholding_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,6 @@
from qtpy.QtCore import Qt




class ThresholdingView(View, MainWindow):
"""
View for thresholding
Expand Down Expand Up @@ -87,10 +85,12 @@ def __init__(
layout.addWidget(self._title, alignment=Qt.AlignmentFlag.AlignHCenter)

# selecting input image
self._prediction_result_input_widget: PredictionResultListWidget = PredictionResultListWidget(
self._file_input_model,
self._viewer,
self._input_files_service,
self._prediction_result_input_widget: PredictionResultListWidget = (
PredictionResultListWidget(
self._file_input_model,
self._viewer,
self._input_files_service,
)
)
self._prediction_result_input_widget.setObjectName("fileInput")
layout.addWidget(self._prediction_result_input_widget)
Expand Down

0 comments on commit f2889fb

Please sign in to comment.