Change python library lookup to return bytes to match existing behaviour
New behaviour breaks existing code such as:
HOOK_URL, SLACK_CHANNEL, SLACK_CHANNEL_ID = vault.lookup(f"dev_carebot_secrets").decode("utf-8").split("!!!")
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'str' object has no attribute 'decode'. Did you mean: 'encode'?
Change python library
lookup
to return bytes to match existing behaviourNew behaviour breaks existing code such as: