txlyre 6 달 전
부모
커밋
55f1444b17
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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)