Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Python Basics Functions and Looping Raise an Exception

scott Walker
scott Walker
2,506 Points

AssertionError: None != 'baconinator' : I passed in 'bacon' and expected 'baconinator', but got 'None' whats up?

looked at the previous replies to this challenge and couldn't find what i was doing wrong

suggestinator.py
def suggest(product_idea):
    if len( product_idea) < 3:
        raise ValueError ("characters too short")
        return product_idea + "inator"

1 Answer

Steven Parker
Steven Parker
229,744 Points

It looks like an indentation issue. The function needs to perform the return when the "if" does not pass, so it should not be indented so far. The return line should stay at the same indentation level it started at.