in bot/code_coverage_bot/utils.py [0:0]
def hide_secrets(text, secrets):
if type(text) is bytes:
encode_secret, xxx = lambda x: bytes(x, encoding="utf-8"), b"XXX"
elif type(text) is str:
encode_secret, xxx = lambda x: x, "XXX"
else:
return text
for secret in secrets:
if type(secret) is not str:
continue
text = text.replace(encode_secret(secret), xxx)
return text