From 78de5690740b4b7e2a59480e79d37851403c67ca Mon Sep 17 00:00:00 2001 From: Joe R Date: Mon, 17 Mar 2025 18:04:38 -0400 Subject: [PATCH] Fix for the total text crashing Ninety-One on Android (#436) --- pysollib/games/numerica.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pysollib/games/numerica.py b/pysollib/games/numerica.py index 839c032c..6802e081 100644 --- a/pysollib/games/numerica.py +++ b/pysollib/games/numerica.py @@ -1409,7 +1409,7 @@ class NinetyOne(Game): def updateText(self): if self.preview > 1 or not self.texts.score: return - self.texts.score.config(text=self.getTotal()) + self.texts.score.config(text=str(self.getTotal())) def getTotal(self): total = 0