Usually falcons have excellent vision. It's weird that falcon in python sees that these two routes as conflicting:
app.add_route('/verifications/{template}/{email}', code_generation_resource)
app.add_route('/verifications/{email}/code/{code}', code_verification_resource)
error message:
ValueError: The URI template for this route conflicts with another route's template.
I can easily work around it, but I'm wondering why they are conflicting.