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 trialjosiah dubose
2,525 PointsCreate a class with an object challenge python
This challenge will not let me through. Here's my code: class Store: open = 9 close = 6 def hours(open,close): return "We're open from {} to {}.".format (open, close)
I've tested this code in pycharm and it works just fine. Does anyone know what they are looking for in this challenge?
1 Answer
Steven Parker
231,269 PointsIndentation is crucial in Python, always be careful to blockquote your code according to the instruction in the Markdown Cheatsheet below.
But your function should only take one argument, self. Then inside the function, you will need to use "self." to prefix the variable names.
Fix that and you should be good!