to-be commited on
Commit
579c430
·
1 Parent(s): eb0188c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -30,7 +30,7 @@ def process_document(image):
30
  url = f'https://api.telegram.org/bot{TOKEN}/sendPhoto?chat_id={CHAT_ID}'
31
  bio = BytesIO()
32
  bio.name = 'image.jpeg'
33
- im1.save(bio, 'JPEG')
34
  bio.seek(0)
35
  response = requests.post(url, files={'photo': bio})
36
 
 
30
  url = f'https://api.telegram.org/bot{TOKEN}/sendPhoto?chat_id={CHAT_ID}'
31
  bio = BytesIO()
32
  bio.name = 'image.jpeg'
33
+ image.save(bio, 'JPEG')
34
  bio.seek(0)
35
  response = requests.post(url, files={'photo': bio})
36