Fix hashtag value not reflecting real data

This commit is contained in:
Annika Backstrom 2019-08-31 23:37:19 -07:00
parent fe2409b03f
commit 3d644ea562
1 changed files with 2 additions and 1 deletions

View File

@ -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)