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

Chris Freeman
MOD
Chris Freeman
Treehouse Moderator 68,423 Points

cls() not recognized

Error is:

AssertionError: Regex didn't match: 'cls\(.+\)' not found in "class DreamVacation:\n def init(self, location, activities):\n self.location = location\n self.activities = activities\n # insert your code here\n @classmethod\n def rome(cls):\n inst = cls()\n inst.location = 'Rome'\n inst.activities = ['visit the Colosseum', 'Eat gelato']\n return inst" : Make sure to return a new instance using cls().

Code is below. Clearly cls() is there. why isn't it "found"?

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

The issue is the checker expects all of the parameters on the same line. While the code above is correct, for Task 1, the checker rejects it.

Developers: please change the regex to include the re.DOTALL flag (re.S) so that newlines can be "seen" between parens.

Marking as feedback.

1 Answer

Hey Chris Freeman I am not seeing any issue with the code you have here, but it looks like the challenge is wanting you to pass in just the arguments.

        return cls('Rome', ['visit the Colosseum', 'Eat gelato'])
Chris Freeman
Chris Freeman
Treehouse Moderator 68,423 Points

This issue is the checker rejects my code above precisely because I split the arguments into multiple lines. I feel the regex is too restrictive and rejecting valid code.