mirror of
https://github.com/Eledio/superfaktura-client.git
synced 2025-11-01 00:18:25 +01:00
8 lines
167 B
Python
8 lines
167 B
Python
|
|
|
|
def save_temporary_file_as_pdf(
|
|
input_data: bytes, output_path: str = "output.pdf"
|
|
) -> None:
|
|
with open(output_path, "wb") as f:
|
|
f.write(input_data)
|