Skip to content

Commit

Permalink
fix typo in supervoxels_to_roots
Browse files Browse the repository at this point in the history
  • Loading branch information
schlegelp committed Nov 23, 2021
1 parent 89a0ef6 commit 6e67a2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fafbseg/flywire/segmentation.py
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ def supervoxels_to_roots(x, timestamp=None, batch_size=10_000,
# Prepare results array
roots = np.zeros(x.shape, dtype=np.int64)

if isinstance(timestamp. np.datetime64):
if isinstance(timestamp, np.datetime64):
timestamp = str(timestamp)

for i in trange(0, len(x), int(batch_size),
Expand Down

0 comments on commit 6e67a2b

Please sign in to comment.