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 trialvishnu Gautam d
860 PointsCouldn't understand the mistake
Help me solve this
class Store:
open = 9
close = 22
def hours(self):
return "We're open from {} to {}.".format(self.open, self.close)
2 Answers
Joseph Spelts
4,189 PointsSo everything else is perfect besides your variable open. This is a keyword already set in Python that you are unable to use as your own set variable. If you change your variable to something like open_time it will work.
Jason Anello
Courses Plus Student 94,610 PointsHi Vishnu,
You have to indent the hours
method 1 level so that it's part of the class.
vishnu Gautam d
860 PointsIt worked. Thank you for the support.
Jason Anello
Courses Plus Student 94,610 PointsJason Anello
Courses Plus Student 94,610 PointsIn this case, task 1 instructions specifically tell you to name it that way. You won't be able to pass with a different name.
vishnu Gautam d
860 Pointsvishnu Gautam d
860 PointsIt seems we have to leave the open as it is. But we have to indent the hours method. Thank you.