Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Idris Abdulwahab
Courses Plus Student 2,961 Pointsmorse.py
Please look through my code lines as attached. I've tried several ways but i'm not getting through this stage. Please help point out what is wrong. Thank you.
class Letter:
def __init__(self, pattern=None):
self.pattern = pattern
def __str__(self):
translate = []
for n in pattern:
if n == ".":
note = "dot"
elif n == "_":
note = "dash"
translate.append(note)
moon = "-".join(translate)
return moon
class S(Letter):
def __init__(self):
pattern = ['.', '.', '.']
super().__init__(pattern)
1 Answer

Steven Parker
220,415 PointsYou are very close here! When you refer to the pattern stored in the object, you need to use the keyword "self." in front of it.
Fix that, and you'll pass the challenge.
Idris Abdulwahab
Courses Plus Student 2,961 PointsIdris Abdulwahab
Courses Plus Student 2,961 PointsThank you so much Steven. It worked like magic. You are the best!