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.
black
1 parent 8ddfe12 commit 05f20deCopy full SHA for 05f20de
src/frequenz/repo/config/version.py
@@ -99,7 +99,7 @@ def _build_tags(tags: list[str]) -> dict[str, semver.Version]:
99
"""
100
101
def tag_not_none(
102
- tag: tuple[str, semver.Version | None]
+ tag: tuple[str, semver.Version | None],
103
) -> TypeGuard[tuple[str, semver.Version]]:
104
return tag[1] is not None
105
@@ -126,7 +126,7 @@ def _build_branches(branches: list[str]) -> dict[str, BranchVersion]:
126
127
128
def branch_not_none(
129
- branch: tuple[str, BranchVersion | None]
+ branch: tuple[str, BranchVersion | None],
130
) -> TypeGuard[tuple[str, BranchVersion]]:
131
return branch[1] is not None
132
0 commit comments