Open IanMaquignaz opened 3 months ago
That is not the case, no changes are required.
b64encode()
does not refer to base64.b64encode()
It refers to this function which encodes the file. This is not a new function, it's part the of the original codebase
def b64encode(path: Path) -> str:
return base64.b64encode(path.open("rb").read()).decode()
utf-8
Fixes (partially) #8
Warning!