Skip to content

FeaturesLineWidget #200

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove unused packages
  • Loading branch information
zoccoler committed Jul 3, 2023
commit 5891f7f9b72f1401c98f21e50b298295e5ef3e78
4 changes: 1 addition & 3 deletions src/napari_matplotlib/line.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
from typing import Any, Dict, List, Optional, Tuple, Union
import matplotlib.colors as mcolor
from cycler import cycler
import napari
import numpy as np
import pandas as pd
import numpy.typing as npt
from qtpy.QtWidgets import QComboBox, QLabel, QVBoxLayout, QWidget

Expand Down Expand Up @@ -239,7 +237,7 @@ def _ready_to_plot(self) -> bool:
"""
Return True if selected layer has a feature table we can plot with,
the two columns to be plotted have been selected, and object
identifier ('labels') in the table.
identifier (usually 'labels') in the table.
"""
if not hasattr(self.layers[0], "features"):
return False
Expand Down