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 Method Arguments

Whats wrong with this?

As i was watching this video I was writing the code. Somehow and some were I messed up. I do not know what is wrong, and how to fix it. Any help is highly appreciated!

import random


class Thief:
    sneaky = True

    def __init__(self, name, sneaky=True, **kwagrs):
        self.name = name
        self.sneaky = sneaky

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

    def pickpocket(self):
        return self.sneaky and bool(random.randint(0, 1))


    def hide(self, light_level):
            return self.sneaky and light_level < 10

2 Answers

You have a typo in your __init__ parameters. It should be **kwargs not **kwagrs

Tijn-Pieter Koopman
Tijn-Pieter Koopman
4,128 Points

in the method hide, after you define it you have a double tab instead of a single.

Thanks! 👍