Skip to content

Commit

Permalink
Fix mypy error
Browse files Browse the repository at this point in the history
  • Loading branch information
cmalinmayor committed Sep 17, 2024
1 parent 684f761 commit f588698
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/motile_toolbox/candidate_graph/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def nodes_from_points_list(
if scale is not None:
assert (
len(scale) == points_list.shape[1]
), f"Cannot scale points with {points_list.size[1]} dims by factor {scale}"
), f"Cannot scale points with {points_list.shape[1]} dims by factor {scale}"
points_list = points_list * np.array(scale)

# add points to graph
Expand Down

0 comments on commit f588698

Please sign in to comment.