aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/markov.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/modules/markov.py b/modules/markov.py
index 888768ef..3f2116dc 100644
--- a/modules/markov.py
+++ b/modules/markov.py
@@ -37,8 +37,6 @@ class Module(ModuleManager.BaseModule):
"INSERT OR REPLACE INTO markov VALUES (?, ?, ?, ?, ?)",
[event["channel"].id]+insert+[frequency])
- print(self.generate(event["channel"].id))
-
def _choose(self, words):
words, frequencies = list(zip(*words))
return random.choices(words, weights=frequencies, k=1)[0]