Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Mar 20, 2023
1 parent 7ffe660 commit bb661a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions napari_clusters_plotter/_plotter.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from matplotlib.figure import Figure
from napari_tools_menu import register_dock_widget
from qtpy import QtWidgets
from qtpy.QtCore import Qt, QSignalBlocker
from qtpy.QtCore import QSignalBlocker, Qt
from qtpy.QtGui import QGuiApplication, QIcon
from qtpy.QtWidgets import (
QCheckBox,
Expand Down Expand Up @@ -534,7 +534,7 @@ def run(
feature_y=self.plot_y_axis_name,
colors=colors,
histogram_data=self.graphics_widget.histogram,
hide_first_cluster=self.plot_hide_non_selected.isChecked()
hide_first_cluster=self.plot_hide_non_selected.isChecked(),
)
xedges = self.graphics_widget.histogram[1]
yedges = self.graphics_widget.histogram[2]
Expand Down
2 changes: 0 additions & 2 deletions napari_clusters_plotter/_plotter_utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -416,8 +416,6 @@ def make_cluster_overlay_img(
[cluster_id, feature_x, feature_y],
]



cluster_overlay_rgba = np.zeros((*h.shape, 4), dtype=float)
output_max = np.zeros(h.shape, dtype=float)

Expand Down

0 comments on commit bb661a7

Please sign in to comment.