AnalogCyan / itadakimasu

Unused variable found PYL-W0612
Anti-pattern
Major
5 months agoa year old
Unused variable 'text_height'
 86    font_path = "./assets/ShareTechMono-Regular.ttf"
 87    font_size = 48
 88    font = ImageFont.truetype(font_path, font_size)
 89    text_width, text_height = draw.textsize(title, font=font) 90    text_x = (img.width - text_width) // 2
 91    text_y = logo_y + logo.height + 20
 92    draw.text((text_x, text_y), title,