We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6fa69d commit b7ddfaeCopy full SHA for b7ddfae
completion.py
@@ -16,7 +16,9 @@ def branches_from_devguide(devguide_dir: Path) -> list[str]:
16
p = devguide_dir.joinpath('include/release-cycle.json')
17
data = json.loads(p.read_text())
18
return [
19
- branch for branch in data if data[branch]['status'] in ('bugfix', 'security', 'prerelease')
+ branch
20
+ for branch in data
21
+ if data[branch]['status'] in ('bugfix', 'security', 'prerelease')
22
]
23
24
0 commit comments