Skip to content

Commit 58c9036

Browse files
committed
Fixed parenthesis issue with print after conversion
1 parent d08f1a8 commit 58c9036

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

suite2p/run_s2p.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -335,9 +335,9 @@ def run_s2p(ops={}, db={}):
335335
}
336336
if ops['input_format'] in convert_funs:
337337
ops1 = convert_funs[ops['input_format']](ops.copy())
338-
print('time {:4.2f} sec. Wrote {} files to binaries for {} planes').format(
338+
print('time {:4.2f} sec. Wrote {} files to binaries for {} planes'.format(
339339
(time.time() - t0), ops['input_format'], len(ops1)
340-
)
340+
))
341341
else:
342342
ops1 = io.tiff_to_binary(ops.copy())
343343
print('time {:4.2f} sec. Wrote {} tiff frames to binaries for {} planes'.format(

0 commit comments

Comments
 (0)