Skip to content

Commit

Permalink
Python Style Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zhihao11ui authored and darko-marinov committed Dec 5, 2024
1 parent d657dcf commit 131b7bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions auto_find_deletion_commit/find_deletion_commit.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def find_deleted_test_function(repo_path, file_path, test_function_name):
text=True,
)
if result.returncode != 0 or not result.stdout:
print(f"No deletion found for test function")
print("No deletion found for test function")
return None
lines = result.stdout.splitlines()
for line in lines:
Expand Down Expand Up @@ -55,5 +55,5 @@ def find_deleted_test_function(repo_path, file_path, test_function_name):
repo_path = repo_dir
else:
repo_path = repo_input

find_deleted_test_function(repo_path, file_path, test_function_name)

0 comments on commit 131b7bb

Please sign in to comment.