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.

Venkata Bhargav
8,130 PointsCouldn't find the `RaceCar` class
This is giving the error that I mentioned in heading. I really couldn't figure out what is wrong with this code.
class RaceCar:
laps = 0
def __init__(self, color, fuel_remaining, **kwargs):
self.color = color
self.fuel_remaining = fuel_remaining
for key, value in kwargs.items():
setattr(self, key, value)
def run_lap(length):
self.laps += 1
self.fuel_remaining -= length * 0.125
my_car = RaceCar(red, 5)
my_car.run_lap(3)
2 Answers

Steven Parker
216,148 PointsIt looks like you just forgot to include the "self" parameter in "run_lap".
And for the challenge, you only need to define the class. You won't need to create an instance or call any methods on it.

Venkata Bhargav
8,130 PointsYes it worked. Thank you Steven.