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 8bce055 commit afdc452Copy full SHA for afdc452
completion.py
@@ -12,9 +12,7 @@ def branches_from_devguide(devguide_dir: Path) -> list[str]:
12
p = devguide_dir.joinpath('include/release-cycle.json')
13
data = json.loads(p.read_text())
14
return [
15
- branch
16
- for branch in data
17
- if data[branch]['status'] in ('bugfix', 'security', 'prerelease')
+ branch for branch in data if data[branch]['status'] in ('bugfix', 'security')
18
]
19
20
0 commit comments