Spaces:
Runtime error
Runtime error
minor
Browse files
app.py
CHANGED
@@ -65,7 +65,7 @@ def display_image(url, scale=0.5, enable_flag = False):
|
|
65 |
from urllib.request import urlopen
|
66 |
from PIL import Image
|
67 |
|
68 |
-
enable_flag = display_img_flag # adhoc code, should send this variable properly
|
69 |
|
70 |
if enable_flag: # default to False as imgur server seems to refuse our request and cause permanent error
|
71 |
image = Image.open(urlopen(url))
|
|
|
65 |
from urllib.request import urlopen
|
66 |
from PIL import Image
|
67 |
|
68 |
+
enable_flag = False if display_img_flag != 'Yes' else True # adhoc code, should send this variable properly
|
69 |
|
70 |
if enable_flag: # default to False as imgur server seems to refuse our request and cause permanent error
|
71 |
image = Image.open(urlopen(url))
|