Richard Fan commited on
Commit
9feec6e
·
1 Parent(s): 35c21d7
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -59,7 +59,9 @@ categories_map = {
59
 
60
 
61
  def sample(email, topic, physics_topic, categories, interest):
62
- if subject == "Physics":
 
 
63
  if isinstance(physics_topic, list):
64
  raise gr.Error("You must choose a physics topic.")
65
  topic = physics_topic
 
59
 
60
 
61
  def sample(email, topic, physics_topic, categories, interest):
62
+ if not topic:
63
+ raise gr.Error("You must choose a topic.")
64
+ if topic == "Physics":
65
  if isinstance(physics_topic, list):
66
  raise gr.Error("You must choose a physics topic.")
67
  topic = physics_topic