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 trialKirk 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 68,441 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
231,248 PointsSteven Parker
231,248 PointsI didn't catch that, so I'm guessing that's something only a moderator can see, right?
Chris Freeman
Treehouse Moderator 68,441 PointsChris Freeman
Treehouse Moderator 68,441 PointsUnfortunately, peeking at the raw post source code is only available to moderators. Sorry!
Chris Freeman
Treehouse Moderator 68,441 PointsChris Freeman
Treehouse Moderator 68,441 PointsIn general, if the cut-and-pasted code passes then it is almost always a tab/space issue.
Steven Parker
231,248 PointsSteven Parker
231,248 PointsGood to know! I'll try to remember to suggest checking that next time.