From 3d644ea5620349fb796e9f6e8916ad92e08e1d89 Mon Sep 17 00:00:00 2001 From: Annika Backstrom Date: Sat, 31 Aug 2019 23:37:19 -0700 Subject: [PATCH] Fix hashtag value not reflecting real data --- xoxo.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xoxo.py b/xoxo.py index 86c8260..d109bfe 100644 --- a/xoxo.py +++ b/xoxo.py @@ -36,7 +36,8 @@ class InkyDraw: def update(self, stats): self.users = stats['new_users'] self.statuses = stats['new_statuses'] - + self.hashtag = stats['new_hashtags'] + def write(self): self.image = Image.open("graphics/xoxo.png") self.draw = ImageDraw.Draw(self.image)