tommy24 commited on
Commit
c3a8075
·
1 Parent(s): 8592a70

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -836,7 +836,7 @@ def classify(platform, UserInput, Images, Textbox2, Textbox3):
836
  print("Error: Image data is not available.")
837
  return None
838
 
839
- if UserInput.lower() is not None:
840
  caption = UserInput.lower()
841
  else:
842
  caption = None
 
836
  print("Error: Image data is not available.")
837
  return None
838
 
839
+ if UserInput is not None:
840
  caption = UserInput.lower()
841
  else:
842
  caption = None