diff --git a/scripts/blame.py b/scripts/blame.py index 59a4471e9..f44f0d926 100755 --- a/scripts/blame.py +++ b/scripts/blame.py @@ -5,6 +5,7 @@ from aider.dump import dump def get_aider_commits(): """Get commit hashes for commits with messages starting with 'aider:'""" + commits = [] result = subprocess.run( ["git", "log", "--pretty=format:%H %s"], capture_output=True, @@ -18,7 +19,6 @@ def get_aider_commits(): if commit_message.startswith("aider:"): commits.append(commit_hash) - return commits import sys