From e7fd1a30050fe1a36b8a6d822ab6a5604f8094b1 Mon Sep 17 00:00:00 2001 From: bton Date: Fri, 12 Apr 2024 21:44:39 +0200 Subject: [PATCH] test --- oled.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oled.py b/oled.py index 2474297..24d06b8 100644 --- a/oled.py +++ b/oled.py @@ -13,7 +13,7 @@ def Balance(user_id, user_name, balance): clear() display.text(str(user_id), 0, 0, (255,255,255), size=1) display.text(str(user_name), 50, 0, (255,255,255), size=1) - display.text(str(balance), 0, 50, (255,255,255, size=2)) + display.text(str(balance), 0, 50, (255,255,255), size=2) if __name__ == "__main__": Balance(1, "Test", 255)