Merge pull request #929 from pimoroni/patch/wordclock

Fixed arg order bug
This commit is contained in:
Philip Howard 2024-04-11 14:57:07 +01:00 committed by GitHub
commit e8e550b18b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ def draw():
y += line_space
x = default_x
graphics.text(letter.upper(), x, y, 640, scale, spacing)
graphics.text(letter.upper(), x, y, 640, scale=scale, spacing=spacing)
x += letter_space
graphics.update()