diff --git a/chatter/chat.py b/chatter/chat.py index ec8e7b1..43c6ebe 100644 --- a/chatter/chat.py +++ b/chatter/chat.py @@ -143,7 +143,7 @@ class Chatter(Cog): total = len(data) # try: for c, convo in enumerate(data, 1): - if len(convo) > 1: + if len(convo) > 1: # TODO: Toggleable skipping short conversations print(f"{c} / {total}") trainer.train(convo) # except: