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 Advanced Objects Dream Vacation

Please help what is wrong with my code

adas

dream_vacation.py
class DreamVacation:
    def __init__(self, location, activities):
        self.location = location
        self.activities = activities
    # insert your code here
    @classmethod
    def rome(cls):
        location = 'Rome'
        activities = ['visit the Colosseum', 'Eat gelato']
        return cls(location) 
        return cls(activities)

1 Answer

Josh Keenan
Josh Keenan
19,652 Points

You are wanting to pass both into cls, so you're very close, but you can't do it twice.

    @classmethod
    def rome(cls):
        return cls("Rome", ['visit the Colosseum', 'Eat gelato'])

This is returning a new instance of the class, passing in the two parameters to the __init__ method, it expects the first one to be location and the second to be activities. Feel free to ask any questions if you need to. Hope this helps.