Remove unused argument

This commit is contained in:
Andrew Murray 2026-02-06 21:12:31 +11:00
parent 3e14bea593
commit 0604d6a2c9
2 changed files with 6 additions and 6 deletions

View File

@ -75,13 +75,13 @@ 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(request: pytest.FixtureRequest, tmp_path: Path) -> None:
def test_to_imagefont(tmp_path: Path) -> None:
with open(fontname, "rb") as test_file:
pcffont = PcfFontFile.PcfFontFile(test_file)
imgfont = pcffont.to_imagefont()
imagefont = pcffont.to_imagefont()
im = Image.new("L", (130, 30), "white")
draw = ImageDraw.Draw(im)
draw.text((0, 0), message, "black", font=imgfont)
draw.text((0, 0), message, "black", font=imagefont)
assert_image_equal_tofile(im, "Tests/images/test_draw_pbm_target.png")

View File

@ -151,6 +151,6 @@ class FontFile:
buf = io.BytesIO()
self.save_metrics(buf)
buf.seek(0)
imgfont = ImageFont.ImageFont()
imgfont._load_pilfont_data(buf, self.bitmap)
return imgfont
imagefont = ImageFont.ImageFont()
imagefont._load_pilfont_data(buf, self.bitmap)
return imagefont