ChavinloSocialRise commited on
Commit
c5acdc6
·
verified ·
1 Parent(s): 71e7e13

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -18,7 +18,8 @@ def convert(input_img, quality=85):
18
 
19
  def send_req(input_img: PIL.Image.Image):
20
 
21
- print("type: ", type(input_img))
 
22
 
23
  req = {
24
  "input": {
 
18
 
19
  def send_req(input_img: PIL.Image.Image):
20
 
21
+ if type(input_img) is not PIL.Image.Image:
22
+ input_img = Image.fromarray(input_img, 'RGB')
23
 
24
  req = {
25
  "input": {