Skip to content

Commit dcab365

Browse files
committed
removed unused ComboBox
1 parent 6731648 commit dcab365

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/napari_matplotlib/histogram.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import napari
44
import numpy as np
55
from qtpy.QtWidgets import QWidget
6-
from magicgui import magicgui, ComboBox
6+
from magicgui import magicgui
77

88
from .base import SingleAxesWidget
99
from .util import Interval
@@ -94,9 +94,7 @@ def _set_axis_keys(self, x_axis_key: str) -> None:
9494
self._x_axis_key = x_axis_key
9595
self._draw()
9696

97-
def _get_valid_axis_keys(
98-
self, combo_widget: Optional[ComboBox] = None
99-
) -> List[str]:
97+
def _get_valid_axis_keys(self) -> List[str]:
10098
"""
10199
Get the valid axis keys from the layer FeatureTable.
102100

0 commit comments

Comments
 (0)