From 9ccdf5e2b574573156ddce21b86c34c77da498ed Mon Sep 17 00:00:00 2001 From: Stefan Bethke Date: Wed, 8 Oct 2025 20:06:27 +0200 Subject: [PATCH] Die IP ist sinnlos (interne Docker-IP) --- buba/animations/time.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buba/animations/time.py b/buba/animations/time.py index 78ef2f1..d71b0ef 100644 --- a/buba/animations/time.py +++ b/buba/animations/time.py @@ -13,7 +13,7 @@ class BubaTime(BubaAnimation): def show(self): self.buba.text(page=0, row=0, col_start=0, col_end=119, text="Chaos Computer Club", align=BubaCmd.ALIGN_CENTER) self.buba.text(page=0, row=1, col_start=0, col_end=119, text="Hansestadt Hamburg", align=BubaCmd.ALIGN_CENTER) - self.buba.text(page=0, row=2, col_start=0, col_end=119, text=f"{self.ip}", align=BubaCmd.ALIGN_CENTER) + # self.buba.text(page=0, row=2, col_start=0, col_end=119, text=f"{self.ip}", align=BubaCmd.ALIGN_CENTER) self.buba.text(page=0, row=3, col_start=0, col_end=119, text=datetime.now().strftime("%Y-%m-%d %H:%M"), align=BubaCmd.ALIGN_CENTER) sleep(10)