Skip to content

Commit fc1fa4f

Browse files
authored
try to lint cubids.py
1 parent 333654a commit fc1fa4f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cubids/cubids.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,8 @@ def apply_tsv_changes(self, summary_tsv, files_tsv, new_prefix, raise_on_error=T
410410
if Path(from_file).exists():
411411
# if using datalad, we want to git mv instead of mv
412412
if self.use_datalad:
413-
move_ops.append(f"git mv {os.path.relpath(from_file,str(self.path))} {to_file}")
413+
move_ops.append(f"git mv {os.path.relpath(from_file,
414+
str(self.path))} {to_file}")
414415
else:
415416
move_ops.append(f"mv {from_file} {to_file}")
416417

0 commit comments

Comments
 (0)