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 trialChang Hyeon Lee
2,008 PointsI don't understand what's wrong with my answer
I need help.
class Store:
open = 9
close = 10
def hours(self):
return ("We're open from {} to {}.".format(self, open, close))
1 Answer
Josip Dorvak
18,126 Pointsthe format method only takes arguments that will fill the place holders. As your arguments you passed in self which is the object your working with, open and close which don't exist as you wrote them since your method doesn't know which open or close parameter you want. You want to pass in only 2 arguments, which are self.open and self.close