alexkueck commited on
Commit
891942e
·
verified ·
1 Parent(s): b79c0e1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -11,7 +11,7 @@ import base64
11
  import tempfile
12
  from reportlab.pdfgen import canvas
13
  from reportlab.lib.pagesizes import letter
14
- from PyPDF2 import PdfFileReader
15
 
16
  from hugchat import hugchat
17
  from hugchat.login import Login
@@ -198,7 +198,7 @@ def clear_all(history, uploaded_file_paths, chats):
198
  # Verschiebe den Lesekopf an den Beginn des Bytes IO Streams
199
  memoryFile.seek(0)
200
  # Erstelle ein PDF-Objekt aus dem Bytes IO Stream
201
- pdf = PdfFileReader(memoryFile)
202
  # Öffne eine neue PDF-Datei und kopiere den Inhalt des Bytestreams hinein
203
  with open(file_path_download, 'wb') as outf:
204
  pdf.write(outf)
 
11
  import tempfile
12
  from reportlab.pdfgen import canvas
13
  from reportlab.lib.pagesizes import letter
14
+ from PyPDF2 import PdfReader
15
 
16
  from hugchat import hugchat
17
  from hugchat.login import Login
 
198
  # Verschiebe den Lesekopf an den Beginn des Bytes IO Streams
199
  memoryFile.seek(0)
200
  # Erstelle ein PDF-Objekt aus dem Bytes IO Stream
201
+ pdf = PdfReader(memoryFile)
202
  # Öffne eine neue PDF-Datei und kopiere den Inhalt des Bytestreams hinein
203
  with open(file_path_download, 'wb') as outf:
204
  pdf.write(outf)