Skip to content

Commit

Permalink
use and apply newer rough; fix version to prevent local/CI mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
vreuter committed May 30, 2024
1 parent ca20e9f commit 7457a79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion looptrace_loci_vis/reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def records_to_qcfail_layer_data(
) -> tuple[list[PointRecord], list[bool], LayerParams]:
"""Extend the given records partially through a z-stack, designate appropriately as central-plane or not; also set fail codes text."""
max_z = max(r.get_z_coordinate() for r, _ in record_qc_pairs)
points: list["PointRecord"] = []
points: list[PointRecord] = []
center_flags: list[bool] = []
codes: list[QCFailReasons] = []
for rec, qc in record_qc_pairs:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ looptrace-loci-vis = "looptrace_loci_vis:napari.yaml"
[project.optional-dependencies]
formatting = [
"codespell >= 2.2.4",
"ruff >= 0.3",
"ruff >= 0.4.6",
]
linting = [
"mypy >= 1.0.1",
Expand Down

0 comments on commit 7457a79

Please sign in to comment.