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 trialRadosław Kalina
13,085 Pointscls.create()
Why you use cls.create(username=username...) ? Why do not use simple cls(username=username...)?
1 Answer
Alejandra Estefanía Aguilera Ávila
6,865 PointsHi!
I think this is because cls refers to the class where we define create_user (which is User). Thanks to the @classmethod, you don't need to create an instance (which is what you would be doing with cls(username=username) ).
Hope this helps (: