From 04470d5151069736f136210d3170bdab402baa47 Mon Sep 17 00:00:00 2001 From: Andrew Murray <3112309+radarhere@users.noreply.github.com> Date: Tue, 3 Mar 2026 22:51:41 +1100 Subject: [PATCH] Removed unused argument Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> --- Tests/test_font_pcf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/test_font_pcf.py b/Tests/test_font_pcf.py index 8ac63ea61..321dd8560 100644 --- a/Tests/test_font_pcf.py +++ b/Tests/test_font_pcf.py @@ -75,7 +75,7 @@ def test_draw(request: pytest.FixtureRequest, tmp_path: Path) -> None: assert_image_equal_tofile(im, "Tests/images/test_draw_pbm_target.png") -def test_to_imagefont(tmp_path: Path) -> None: +def test_to_imagefont() -> None: with open(fontname, "rb") as test_file: pcffont = PcfFontFile.PcfFontFile(test_file) imagefont = pcffont.to_imagefont()