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 Build a Social Network with Flask Making Strong Users Class Method

Radosław Kalina
Radosław Kalina
13,085 Points

cls.create()

Why you use cls.create(username=username...) ? Why do not use simple cls(username=username...)?

1 Answer

Hi!

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 (: