Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Kirk Waters
2,833 PointsI need help with RaceCar
I can't figure out why this isn't working. please help!
class RaceCar:
def __init__(self, color, fuel_remaining, laps = 0, **kwargs):
self.color = color
self.fuel_remaining = fuel_remaining
self.laps = laps
for key, value in kwargs.items():
setattr(self, key, value)
def run_lap(self, length):
self.fuel_remaining -= (length * .125)
self.laps += 1
1 Answer

Chris Freeman
Treehouse Moderator 67,989 PointsKirk Waters, you are mixing Tab and Space indentation. This gets corrected in the display of the code, so when the code is copied from the rendered post above it passes. Here are the tabs that should be removed:
Kirk Waters
2,833 PointsKirk Waters
2,833 PointsThanks Chris! Just redid the challenge and finally got it! Also learned something new about Tabs and Spaces.
Steven Parker
216,083 PointsSteven Parker
216,083 PointsI didn't catch that, so I'm guessing that's something only a moderator can see, right?
Chris Freeman
Treehouse Moderator 67,989 PointsChris Freeman
Treehouse Moderator 67,989 PointsUnfortunately, peeking at the raw post source code is only available to moderators. Sorry!
Chris Freeman
Treehouse Moderator 67,989 PointsChris Freeman
Treehouse Moderator 67,989 PointsIn general, if the cut-and-pasted code passes then it is almost always a tab/space issue.
Steven Parker
216,083 PointsSteven Parker
216,083 PointsGood to know! I'll try to remember to suggest checking that next time.