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.

Kayla Johnson
1,798 Pointssuper() takes at least 1 argument (0 given)
The video mentions using the following: def get_context_data(self, kwargs): context = super().get_context_data(kwargs)
But this doesn't work. I'm using Python 2.7 and I get the error that it needs an argument. What does this need to look like?
2 Answers

Kenneth Love
Treehouse Guest TeacherLegacy Python required you to specify the class and the instance. context = super(ClassName, self).get_context_data(**kwargs)
(you'll need to put your class name in there where it says ClassName
). All that extra code is yet one more reason to upgrade to modern Python.

Aditya Prakarsa
39,803 Pointscontext = super(HomeView, self).get_context_data(**kwargs)
instead of
context = super().get_context_data(**kwargs)
Kayla Johnson
1,798 PointsKayla Johnson
1,798 PointsI see, thank you. Unfortunately I took on a project for a client and they are using Python 2.7.