Skip to content
Snippets Groups Projects
Verified Commit 0e1e5986 authored by Newbyte's avatar Newbyte :snowflake:
Browse files

mrhlpr.mr: Use pass instead of ellipsis

mypyc doesn't understand the ellipsis in this context:

    mrhlpr/mr.py:177: error: Unsupported statement in class body

And they've functionally the same anyway, so just work around it like
this.
parent 84313cf6
No related branches found
No related tags found
No related merge requests found
......@@ -174,7 +174,8 @@ def get_artifacts_zip(mr_id: int, no_cache: bool, origin: gitlab.GitLabOrigin) -
)
class UnknownReleaseError(ValueError): ...
class UnknownReleaseError(ValueError):
pass
def _target_branch_to_pmos_release(target_branch: str) -> str:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment