first_word -> first_words, better if statement

This commit is contained in:
jesopo 2019-09-30 16:28:57 +01:00
parent 3c60de8164
commit f49f34a98f

View file

@ -116,7 +116,7 @@ class Module(ModuleManager.BaseModule):
stderr.write("Failed to generate markov chain")
def _generate(self, channel_id, first_words):
if first_word == None:
if not first_words:
first_words = self.bot.database.execute_fetchall("""SELECT
third_word, frequency FROM markov WHERE channel_id=? AND
first_word IS NULL AND second_word IS NULL AND third_word
@ -134,8 +134,7 @@ class Module(ModuleManager.BaseModule):
second_word = self._choose(second_words)
words = [first_word, second_word]
else:
if len(first_words) == 1:
elif len(first_words) == 1:
first_word = first_word.lower()
second_two_words = self.bot.database.execute_fetchall("""SELECT
second_word, third_word, frequency FROM markov WHERE