Alienbot kept printing None
before every response… I was really confused, so I checked, and .match_reply()
couldn’t match it to anything, so it printed None
This is my solution:
response = self.match_reply(reply)
if not response:
pass
else:
print(response)