Flask - Ecosystem and Patterns
Given this Flask route:
What will the route return if
@app.route('/profile/')
def profile(user_id):
profile_data = profile_service.fetch_profile(user_id)
if profile_data is None:
return 'Profile not found', 404
return profile_data What will the route return if
fetch_profile returns None?