in src/utils.py [0:0]
def get_padded_str(str_content): rem = len(str_content) % 4 str_content += "=" * (4 - rem) return str_content