Skip to content

Commit f8fd84d

Browse files
jandengarrettwrong
authored andcommitted
Fix #604 (#607)
1 parent 121367f commit f8fd84d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/aspire/source/image.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -725,7 +725,7 @@ def __init__(self, im, metadata=None, angles=None):
725725

726726
# Create filter indices, these are required to pass unharmed through filter eval code
727727
# that is potentially called by other methods later.
728-
self.filter_indices = np.zeros(self.n)
728+
self.filter_indices = np.zeros(self.n, dtype=int)
729729
self.unique_filters = [IdentityFilter()]
730730

731731
# Optionally populate angles/rotations.

0 commit comments

Comments
 (0)