Skip to content

Commit

Permalink
style(lint): fix ruff 0.6 linting errors (#4981)
Browse files Browse the repository at this point in the history
  • Loading branch information
lengau authored Aug 20, 2024
1 parent 3e83dfd commit 3a1b8a9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion snapcraft/commands/remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,8 @@ def _run( # noqa: PLR0915 [too-many-statements]
builder.cleanup()
return returncode

def _monitor_and_complete( # noqa: PLR0912 (too many branches)
# noqa for too-many-branches and too-many-statements
def _monitor_and_complete( # noqa: PLR0912, PLR0915
self, build_id: str | None, builds: Collection[Build]
) -> int:
builder = self._services.remote_build
Expand Down

0 comments on commit 3a1b8a9

Please sign in to comment.