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 trialJoseph Duarte
468 PointsI don't know what i'm doing wrong on this Challenge
store_open
is not False
1 Answer
Lorenzo Minto
13,898 PointsSince you haven't posted any code I can't tell you for sure what you did wrong, but my guess is that you might have forgotten to put the else? (you can only omit the else if you have a potential return before). I tried out this code and it works:
if time in store_hours:
store_open = True
else:
store_open = False
Hope it helps.