Skip to content

Commit

Permalink
lint take 2...
Browse files Browse the repository at this point in the history
  • Loading branch information
smeisler authored Dec 23, 2024
1 parent fc1fa4f commit 9e8de03
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cubids/cubids.py
Original file line number Diff line number Diff line change
Expand Up @@ -410,8 +410,9 @@ def apply_tsv_changes(self, summary_tsv, files_tsv, new_prefix, raise_on_error=T
if Path(from_file).exists():
# if using datalad, we want to git mv instead of mv
if self.use_datalad:
move_ops.append(f"git mv {os.path.relpath(from_file,
str(self.path))} {to_file}")
move_ops.append(
f"git mv {os.path.relpath(from_file, str(self.path))} {to_file}"
)
else:
move_ops.append(f"mv {from_file} {to_file}")

Expand Down

0 comments on commit 9e8de03

Please sign in to comment.