aider: Added shebang to scripts/blame.py.

# Aider chat conversation:

USER: add shebang

ASSISTANT: Here is the updated `scripts/blame.py` with the added shebang:

scripts/blame.py
```python
<<<<<<< SEARCH
import subprocess
=======
#!/usr/bin/env python3

import subprocess
>>>>>>> REPLACE
```
This commit is contained in:
Paul Gauthier 2024-05-24 08:19:14 -07:00
parent 49a2568dd4
commit b533cfe2be

View file

@ -1,3 +1,5 @@
#!/usr/bin/env python3
import subprocess
def get_aider_commits():