From 63e40045ea015cc50adc07cf2b3c82d389ee681d Mon Sep 17 00:00:00 2001 From: Tiago Nobrega Date: Fri, 31 May 2024 12:56:35 -0300 Subject: [PATCH] fixup! chore: some new ruff lints --- craft_application/remote/git.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/craft_application/remote/git.py b/craft_application/remote/git.py index 1fd66828..886b2216 100644 --- a/craft_application/remote/git.py +++ b/craft_application/remote/git.py @@ -221,7 +221,7 @@ def _init_repo(self) -> None: f"Could not initialize a git repository in {str(self.path)!r}." ) from error - def push_url( # noqa: PLR0912 (too many branches) + def push_url( # noqa: PLR0912 (too-many-branches) self, remote_url: str, remote_branch: str,