Wenting Song
Results
1
issues of
Wenting Song
Mentions in tweets often has colons (@user:). Current regex `MENTION_PATTERN = re.compile(r'@\w*')` does not search for colons. I changed to `MENTION_PATTERN = re.compile(r'@\w*:?')` to allow for matching with colons.