fixup: Format Python code with Black

pull/2060/head
github-actions 1 year ago
parent a4f0022a5a
commit 953be5a36b

@ -2,11 +2,12 @@ from PIL.ImageFont import ImageFont, FreeTypeFont
def getsize(font: ImageFont | FreeTypeFont, text: str): def getsize(font: ImageFont | FreeTypeFont, text: str):
left, top, right, bottom = font.getbbox(text) left, top, right, bottom = font.getbbox(text)
width = right - left width = right - left
height = bottom - top height = bottom - top
return width, height return width, height
def getheight(font: ImageFont | FreeTypeFont, text: str): def getheight(font: ImageFont | FreeTypeFont, text: str):
_, height = getsize(font, text) _, height = getsize(font, text)
return height return height

Loading…
Cancel
Save