From 89b7ad362553c49fa44c094de2f540aa3032afbf Mon Sep 17 00:00:00 2001 From: Ryan Reed Date: Thu, 7 Sep 2023 18:20:17 -0400 Subject: [PATCH] Minor comment updates --- src/transpose/transpose.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/transpose/transpose.py b/src/transpose/transpose.py index 3fea08b..eec06ce 100644 --- a/src/transpose/transpose.py +++ b/src/transpose/transpose.py @@ -146,7 +146,7 @@ class Transpose: if entry_path.exists(): if entry_path.is_symlink(): remove(entry_path) - elif force: # Backup the existing path, just in case + elif force: # Backup the existing path move(entry_path, entry_path.with_suffix(".backup")) else: raise TransposeError( @@ -176,7 +176,7 @@ class Transpose: if entry_path.exists(): if entry_path.is_symlink(): remove(entry_path) - elif force: # Backup the existing path, just in case + elif force: # Backup the existing path move(entry_path, entry_path.with_suffix(".backup")) else: raise TransposeError( @@ -193,7 +193,7 @@ class Transpose: Move the source path to the store path, create a symlink, and update the config Args: - name: The name of the entry (must exist) + name: The name of the entry source_path: The directory or file to be stored Returns: