Remove debugging print

This commit is contained in:
Joscha 2016-09-19 06:11:43 +00:00
parent 32e320b820
commit dbf4fe1a40

View file

@ -30,7 +30,6 @@ class Markov:
before = random.choice(list(self.matrix))
selection = self.matrix[before]
print(repr(before), repr(selection))
choice = random.randrange(sum(selection.values()))
counter = 0