Skip to content

Commit

Permalink
[pre-commit.ci] Fixing issues with pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Oct 9, 2024
1 parent 471e0ab commit c657bc5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions topostats/tracing/nodestats.py
Original file line number Diff line number Diff line change
Expand Up @@ -913,9 +913,9 @@ def join_matching_branches_through_node(
- "avg_mask" : npt.NDArray[np.bool_]. Average mask of the branches.
"""
matched_branches: dict[int, MatchedBranch] = {}
masked_image: dict[
int, dict[str, npt.NDArray[np.bool_]]
] = {} # Masked image is a dictionary of pairs of branches
masked_image: dict[int, dict[str, npt.NDArray[np.bool_]]] = (
{}
) # Masked image is a dictionary of pairs of branches
for i, (branch_1, branch_2) in enumerate(pairs):
matched_branches[i] = MatchedBranch(
ordered_coords=np.array([], dtype=np.int32),
Expand Down

0 comments on commit c657bc5

Please sign in to comment.