Skip to content

Commit 2aed60e

Browse files
committed
Fix spell
1 parent 530c363 commit 2aed60e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sleap_nn/data/instance_cropping.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def find_instance_crop_size(
4444
max_length = 0.0
4545
for lf in labels:
4646
for inst in lf.instances:
47-
if not inst.is_empty: # only if atleast one point is not nan
47+
if not inst.is_empty: # only if at least one point is not nan
4848
pts = inst.numpy()
4949
pts *= input_scaling
5050
diff_x = np.nanmax(pts[:, 0]) - np.nanmin(pts[:, 0])

0 commit comments

Comments
 (0)