From cae56b7cb7d9f65989f5db4bd43208402300bf50 Mon Sep 17 00:00:00 2001 From: Robert Borzutzki Date: Wed, 19 Oct 2022 13:25:27 +0200 Subject: [PATCH] fix --- examples/mqtt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/mqtt.py b/examples/mqtt.py index a6a55e5..11d6abe 100644 --- a/examples/mqtt.py +++ b/examples/mqtt.py @@ -78,7 +78,7 @@ def on_message(client, userdata, msg): line = 60 print(line) - drawblack.text((150, line), "", font = font10, fill = 0) + drawblack.text((150, line), " ", font = font10, fill = 0) epd.DisplayPartial(epd.getbuffer(HBlackimage)) drawblack.text((150, line), msg.payload.decode(), font = font10, fill = 0) epd.DisplayPartial(epd.getbuffer(HBlackimage))