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 trial

Python Object-Oriented Python Instant Objects Master Class

Brynne Delerson
Brynne Delerson
5,608 Points

Master Class Q2

Not sure what I'm missing here - it works just fine in PyCharm. Any ideas? It would be great if the feedback in these challenge tasks was actually helpful - "Bummer, try again" doesn't help me find my mistake like a traceback does.

racecar.py
class RaceCar:
    def __init__(self, color, fuel_remaining, laps=0, **kwargs):
        self.color = color
        self.fuel_remaining = fuel_remaining
        self.laps = laps

        for attribute, value, in kwargs.items():
            setattr(self, attribute, value)

    def run_lap(self, length):
        self.fuel_remaining -= length * .125
        self.laps += 1

2 Answers

diogorferreira
diogorferreira
19,363 Points

It works perfectly for me and the challenge returns a Well Done! This happens a lot just check the whitespace, or copy and paste it back in?

Brynne Delerson
Brynne Delerson
5,608 Points

thanks, I pasted it back in from pycharm and it worked.