From 4f1a0a95e6143928b2772dc78c3cd238fa75e777 Mon Sep 17 00:00:00 2001 From: Maxwell G Date: Fri, 24 Apr 2026 08:40:44 -0500 Subject: [PATCH] lint: fix ruff errors --- noxfile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/noxfile.py b/noxfile.py index 005942f..251075c 100644 --- a/noxfile.py +++ b/noxfile.py @@ -89,14 +89,14 @@ def mockbuild(session: nox.Session): tmp = Path(session.create_tmp()) srpm(session, ("-o", str(tmp), "--keep")) spec_path = tmp / "forge-srpm-macros.spec" + # fmt: off margs = [ - # fmt: off "mock", "--spec", str(spec_path), "--source", str(tmp), *session.posargs, - # fmt: on ] + # fmt: on if not session.interactive: margs.append("--verbose") session.run(*margs, external=True)