lint: fix ruff errors

This commit is contained in:
Maxwell G 2026-04-24 08:40:44 -05:00
commit 4f1a0a95e6
Signed by: gotmax23
GPG key ID: F79E4E25E8C661F8

View file

@ -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)