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 trialRabih Atallah
3,405 Pointstask 1 is not passing
I'm in task 3 of the challenge: What is wrong so whenever I check my code , I get an error message: Task 1 is no longer passing. I tried it several times and still getting the same error message.
from peewee import *
db = SqliteDatabase("challenges.db")
class Challenge(Model):
name = CharField(max_lenght = 100, unique = True)
language = CharField(max_lenght = 100, unique = True)
1 Answer
Kenneth Love
Treehouse Guest TeacherYou misspelled length
in the second field.
Rabih Atallah
3,405 PointsRabih Atallah
3,405 PointsThanks!! It takes a teacher to catch it