From cdb7b4bf2cbffabf0eecc905e141756b93b10613 Mon Sep 17 00:00:00 2001 From: thirdr Date: Thu, 11 Apr 2024 14:02:26 +0100 Subject: [PATCH] fixed arg order bug --- micropython/examples/inky_frame/inkylauncher/word_clock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/micropython/examples/inky_frame/inkylauncher/word_clock.py b/micropython/examples/inky_frame/inkylauncher/word_clock.py index b2e0fc2b..621a7e35 100644 --- a/micropython/examples/inky_frame/inkylauncher/word_clock.py +++ b/micropython/examples/inky_frame/inkylauncher/word_clock.py @@ -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()