test fixes

This commit is contained in:
Ali Abid 2021-05-24 14:01:45 -07:00
parent e4fb739fd2
commit 132281f8a0

View File

@ -3,7 +3,6 @@
import gradio as gr
def sentence_builder(quantity, animal, place, activity_list, morning):
print(quantity, type(quantity), animal, type(animal), place, type(place), activity_list, type(activity_list), type(activity_list[0]), morning, type(morning), )
return f"""The {quantity} {animal}s went to the {place} where they {" and ".join(activity_list)} until the {"morning" if morning else "night"}"""