Parcourir la source

Tuple, not list.

tags/v0.1^2
Ben Kurtovic il y a 12 ans
Parent
révision
c198ce27a7
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      earwigbot/wiki/copyvios/markov.py

+ 1
- 1
earwigbot/wiki/copyvios/markov.py Voir le fichier

@@ -40,7 +40,7 @@ class MarkovChain(object):
words = ([self.START] * padding) + words + ([self.END] * padding)
for i in range(len(words) - self.degree + 1):
last = i + self.degree - 1
self.chain[words[i:last]][words[last]] += 1
self.chain[tuple(words[i:last])][words[last]] += 1

def __repr__(self):
"""Return the canonical string representation of the MarkovChain."""


Chargement…
Annuler
Enregistrer