mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-30 09:14:59 +00:00
style: Apply linter formatting to blame.py
This commit is contained in:
parent
2425322e8d
commit
3877ab1f00
1 changed files with 1 additions and 4 deletions
|
@ -32,10 +32,7 @@ def blame(start_tag, end_tag=None):
|
||||||
|
|
||||||
revision = end_tag if end_tag else "HEAD"
|
revision = end_tag if end_tag else "HEAD"
|
||||||
files = run(["git", "ls-tree", "-r", "--name-only", revision]).strip().split("\n")
|
files = run(["git", "ls-tree", "-r", "--name-only", revision]).strip().split("\n")
|
||||||
test_files = [
|
test_files = [f for f in files if f.startswith("tests/fixtures/languages/") and "/test." in f]
|
||||||
f for f in files
|
|
||||||
if f.startswith("tests/fixtures/languages/") and "/test." in f
|
|
||||||
]
|
|
||||||
files = [
|
files = [
|
||||||
f
|
f
|
||||||
for f in files
|
for f in files
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue