Fixed decoding files to return strings instead of bytes

This commit is contained in:
florian 2025-10-08 10:09:57 +02:00
parent 5bd757e875
commit ea59242370

View File

@ -1,3 +1,3 @@
def return_credentials(path: str)->str:
with open (path) as file:
return file.read()
return file.read().strip()