Ver Fonte

fix typo

txlyre há 6 meses atrás
pai
commit
55f1444b17
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      markov.py

+ 1 - 1
markov.py

@@ -37,7 +37,7 @@ class Markov:
 
         text = text.replace("\n", " ")
         text = text.split(" ")
-        text = map(lambda word: word.strip, text)
+        text = map(lambda word: word.strip(), text)
         text = filter(bool, text)
         text = list(text)