@@ -47,5 +47,5 @@ def inquire(message):
opts = "Yes", "No", "Maybe", "Perhaps", "I guess", "Probably shouldn't", "rand"
chosen = random.choice(opts)
if chosen == "rand":
- chosen = string(random.randrange(10))
- return f"{chosen}"
+ chosen = str(random.randrange(10))
+ return chosen