From a667777fe20546301a5727804d8ce9da743e2169 Mon Sep 17 00:00:00 2001 From: samerbam Date: Tue, 22 Aug 2023 23:09:00 -0400 Subject: [PATCH] fix tabs vs spaces -_- --- application/thermal_print.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/application/thermal_print.py b/application/thermal_print.py index bf580bc..6cd392a 100644 --- a/application/thermal_print.py +++ b/application/thermal_print.py @@ -95,9 +95,9 @@ class ThermalPrinter(): def print_wordsearch(self): # words = ("gugu,gaga") - r = RandomWord() - words = r.random_words(15, include_parts_of_speech=["nouns", "verbs", "adjectives"]) - w = WordSearch(','.join(words), 32, 16) + r = RandomWord() + words = r.random_words(15, include_parts_of_speech=["nouns", "verbs", "adjectives"]) + w = WordSearch(','.join(words), 32, 16) for x in w.grid: self.p.set(align="center")