Skip to content

Commit 576bfc4

Browse files
committed
rename fo to f to please codespell for a file object
1 parent abb0ecf commit 576bfc4

File tree

1 file changed

+2
-2
lines changed
  • nipype/interfaces/cmtk

1 file changed

+2
-2
lines changed

nipype/interfaces/cmtk/nx.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -542,8 +542,8 @@ def _run_interface(self, runtime):
542542
"Saving extra measure file to %s in Pickle format",
543543
op.abspath(out_pickled_extra_measures),
544544
)
545-
with open(out_pickled_extra_measures, "w") as fo:
546-
pickle.dump(dict_measures, fo)
545+
with open(out_pickled_extra_measures, "w") as f:
546+
pickle.dump(dict_measures, f)
547547

548548
iflogger.info("Saving MATLAB measures as %s", matlab)
549549

0 commit comments

Comments
 (0)