mirror of
https://git.ianrenton.com/ian/spothole.git
synced 2026-09-20 06:17:41 +00:00
Use ruff linter to fix issues and provide consistent formatting
This commit is contained in:
@@ -17,8 +17,12 @@ for dxcc in data["dxcc"]:
|
||||
flag = dxcc["flag"]
|
||||
image = Image.new("RGBA", (140, 110), (255, 0, 0, 0))
|
||||
draw = ImageDraw.Draw(image)
|
||||
draw.text((0, -10), flag, font=ImageFont.truetype("/usr/share/fonts/truetype/noto/NotoColorEmoji.ttf", 109),
|
||||
embedded_color=True)
|
||||
draw.text(
|
||||
(0, -10),
|
||||
flag,
|
||||
font=ImageFont.truetype("/usr/share/fonts/truetype/noto/NotoColorEmoji.ttf", 109),
|
||||
embedded_color=True,
|
||||
)
|
||||
outfile = f"{dxcc_id!s}.png"
|
||||
image.save(outfile, "PNG")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user