Skip to content

Commit 4496462

Browse files
committed
reformat
1 parent 61f3312 commit 4496462

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

completion.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,10 @@ def get_completion(
2424
clones_dir: str, repo: str
2525
) -> tuple[float, 'TranslatorsData', str, float]:
2626
clone_path = Path(clones_dir, repo)
27-
for branch in branches_from_devguide(Path(clones_dir, 'devguide')) + ['master', 'main']:
27+
for branch in branches_from_devguide(Path(clones_dir, 'devguide')) + [
28+
'master',
29+
'main',
30+
]:
2831
try:
2932
clone_repo = git.Repo.clone_from(
3033
f'https://github.com/{repo}.git', clone_path, branch=branch

0 commit comments

Comments
 (0)