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