From f43af8a115c4db340afe0d48e50cd949f3f74b6f Mon Sep 17 00:00:00 2001 From: Newbyte Date: Wed, 8 Jan 2025 00:10:01 +0100 Subject: [PATCH] pmb.commands.repo_bootstrap: Remove unnecessary noqa comment (MR 2525) Not sure why this was added, but Ruff doesn't complain if I remove it. --- pmb/commands/repo_bootstrap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pmb/commands/repo_bootstrap.py b/pmb/commands/repo_bootstrap.py index dffed1f1..d6f9cb05 100644 --- a/pmb/commands/repo_bootstrap.py +++ b/pmb/commands/repo_bootstrap.py @@ -169,7 +169,7 @@ class RepoBootstrap(commands.Command): return ret - def run(self) -> None: # noqa: F821 + def run(self) -> None: self.check_existing_pkgs() steps = self.get_steps()