Skip to content

Commit

Permalink
fix code bug in print
Browse files Browse the repository at this point in the history
  • Loading branch information
psobolewskiPhD committed May 3, 2024
1 parent 46b1832 commit c79d81d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion napari-workshops/notebooks/spot_detection_functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ from napari.layers import Points
@Points.bind_key("Shift-D")
def print_number_of_points(points_layer: "napari.layers.Points"):
print("Detected points: " len(points_layer.data))
print("Detected points: ", len(points_layer.data))
```

Expand Down

0 comments on commit c79d81d

Please sign in to comment.