Removed debug logging.

This commit is contained in:
John Wiseman 2019-12-26 22:34:55 -08:00
parent 825b29144e
commit 9b6d402ba2

View File

@ -83,8 +83,6 @@ def do_re_substitutions(s):
new_s = s
for regex, replacement in RE_SUBSTITUTIONS:
new_s = regex.sub(replacement, new_s)
if new_s != s:
print([s, new_s])
return new_s
def contains_upper_and_lower(s):