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

The code checker is broken and needs to be fixed or output better error messages

@classmethod def from_string(cls, string): pattern = [] for word in string.split('-'): if word == 'dot': pattern.append('.') else: pattern.append('_')

    return cls(pattern)
morse.py
class Letter:
    def __init__(self, pattern=None):
        self.pattern = pattern

    def __iter__(self):
        yield from self.pattern

    def __str__(self):
        output = []
        for blip in self:
            if blip == '.':
                output.append('dot')
            else:
                output.append('dash')
        return '-'.join(output)

    @classmethod
    def from_string(cls, string):
        pattern = []
        for word in string.split('-'):
            if word == 'dot':
                pattern.append('.')
            else:
                pattern.append('_')

        return cls(pattern)



class S(Letter):
    def __init__(self):
         pattern = ['.', '.', '.']
         super().__init__(pattern)

1 Answer

Eric M
Eric M
11,545 Points

Hi Tweekes,

This code passed for me on a copy and paste.

This can happen sometimes with the code challenges (I had it happen 3 or 4 times total in completing the beginner and intermediate Python tracks, so not too often but often enough to be a little frustrating).

You can try hitting the restart button at the top of the challenge and pasting it in fresh, but if that doesn't work you might need to log out of Treehouse, close all your browser windows, then come back and log in and try it again. That always solved it for me (but not before thinking there was something wrong with my code for way too long!).

Cheers,

Eric