Skip to content

Commit 05baec0

Browse files
authored
fix: extra parenthesis
1 parent 8ae6bc5 commit 05baec0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/utils/profiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def run(self):
145145
wait_til = start_time
146146
while not self._event.is_set():
147147
# Dump sample to file
148-
print(",".join(f"v" for v in self._sample())), file=self._logfile)
148+
print(",".join(f"v" for v in self._sample()), file=self._logfile)
149149
self._logfile.flush()
150150
wait_til += self._freq
151151
self._event.wait(max(0, wait_til - time()))

0 commit comments

Comments
 (0)