Skip to content

Commit 0ac6d7d

Browse files
committed
Fix a potential identifier bug
1 parent e8cc331 commit 0ac6d7d

File tree

1 file changed

+1
-1
lines changed
  • nextpy/ai/tools/toolkits/file_toolkit/file

1 file changed

+1
-1
lines changed

nextpy/ai/tools/toolkits/file_toolkit/file/move.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def run(
4141
destination_path_ = self.get_relative_path(destination_path)
4242
except FileValidationError:
4343
return INVALID_PATH_TEMPLATE.format(
44-
arg_name="destination_path_", value=destination_path_
44+
arg_name="destination_path_", value=destination_path
4545
)
4646
if not source_path_.exists():
4747
return f"Error: no such file or directory {source_path}"

0 commit comments

Comments
 (0)