removed unnecessary print in wrapper

This commit is contained in:
Martin Schett 2020-12-09 19:07:01 +01:00
parent 7009eb85f8
commit 5d70201516

View File

@ -6,11 +6,6 @@ class WrapperService:
@staticmethod @staticmethod
def wrap_file(file_bytes: bytes) -> str: def wrap_file(file_bytes: bytes) -> str:
file_encoded_b64 = base64.b64encode(file_bytes) file_encoded_b64 = base64.b64encode(file_bytes)
print('b64 gemacht')
print(file_encoded_b64)
print()
print('utf8- decodiert')
print(file_encoded_b64.decode())
return file_encoded_b64.decode() return file_encoded_b64.decode()
@staticmethod @staticmethod