Skip to content

Commit 36e1eb5

Browse files
committed
Format
1 parent 212ec60 commit 36e1eb5

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

build_docs.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,7 @@ def filter(self, branches: Sequence[str] = ()) -> Sequence[Version]:
9696
"""
9797
if branches:
9898
branches = frozenset(branches)
99-
return [
100-
v for v in self if {v.name, v.branch_or_tag} & branches
101-
]
99+
return [v for v in self if {v.name, v.branch_or_tag} & branches]
102100
return [v for v in self if v.status not in {"EOL", "security-fixes"}]
103101

104102
@property

0 commit comments

Comments
 (0)