Skip to content

Commit c0f06be

Browse files
authored
Remove --no_renames argument to list deleted files. (#205)
1 parent d5d5300 commit c0f06be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/huggingface_hub/repository.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ def list_deleted_files(self) -> List[str]:
403403
"""
404404
try:
405405
git_status = subprocess.run(
406-
["git", "status", "--no-renames", "-s"],
406+
["git", "status", "-s"],
407407
stderr=subprocess.PIPE,
408408
stdout=subprocess.PIPE,
409409
check=True,

0 commit comments

Comments
 (0)