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 trialaugustine makachemu
2,058 PointsI don't know how to replace the pass in your method with a cls.create() call, using the provided email and a hash of the
I tried multiple solutions to pass this challenge, but none of them work. Could you please tell me why it's not working and the code to fix it, Thanks.
import datetime
from flask.ext.bcrypt import generate_password_hash
from flask.ext.login import UserMixin
from peewee import *
database = SqliteDatabase(':memory:')
class User(Model):
email = CharField(unique=True)
password = CharField(max_length=100)
join_date = DateTimeField(default=datetime.datetime.now)
bio = CharField(default='')
class Meta:
database = database
@classmethod
def new(cls, email, password):
pass
1 Answer
Alexander Davison
65,469 PointsWell, your code passes the first challenge.
If you are on the second challenge; I should ask "Did you even try?" sine you didn't replace the pass
with what the second task is asking for.
If you are on the first task and you are not passing; try refreshing the page. Your code seems to pass for me.
~Alex
augustine makachemu
2,058 Pointsaugustine makachemu
2,058 PointsI tried to do the second challeng by adding...
Alexander Davison
65,469 PointsAlexander Davison
65,469 PointsYou need to replace the
pass
with the code.I hope this helps. ~Alex
augustine makachemu
2,058 Pointsaugustine makachemu
2,058 PointsThis is the error I get... Bummer! create() takes 1 positional argument but 3 were given
Alexander Davison
65,469 PointsAlexander Davison
65,469 PointsOh I'm sorry I posted an incorrect answer. I found that this works:
GOod luck. ~ALex