We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1a42e5 commit 22b3fe4Copy full SHA for 22b3fe4
src/replace_pdf.py
@@ -35,7 +35,7 @@ def hash_file(filepath):
35
def copy_and_overwrite_if_necessary(source_path, target_path):
36
if not target_path.exists() or DependencyUpdater.hash_file(source_path) != DependencyUpdater.hash_file(target_path):
37
shutil.copy(source_path, target_path)
38
- print(f"{source_path} has been move to the appropriate folder within langchain's source code.")
+ print(f"{source_path} has been moved to the appropriate folder within langchain's source code.")
39
else:
40
print(f"{source_path} is already up to date.")
41
0 commit comments