From 2d8eb42a5772c01b1ae8d3aa4249fd8095597019 Mon Sep 17 00:00:00 2001 From: -inf Date: Tue, 14 Jul 2026 21:07:44 +0300 Subject: [PATCH] chore(black): run `black ci/nur`, format `ci/nur/eval.py` --- ci/nur/eval.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ci/nur/eval.py b/ci/nur/eval.py index c6b6f5de0..a9fb259d7 100644 --- a/ci/nur/eval.py +++ b/ci/nur/eval.py @@ -17,8 +17,7 @@ async def eval_repo(repo: Repo, repo_path: Path) -> None: with tempfile.TemporaryDirectory() as d: eval_path = Path(d).joinpath("default.nix") with open(eval_path, "w") as f: - f.write( - f""" + f.write(f""" with import {{}}; import {EVALREPO_PATH} {{ name = "{repo.name}"; @@ -26,8 +25,7 @@ import {EVALREPO_PATH} {{ src = {repo_path.joinpath(repo.file)}; inherit pkgs lib; }} -""" - ) +""") canonicalized_eval_path = eval_path.resolve() # fmt: off