[Answered ]-Django websocker error: AttributeError: 'super' object has no attribute 'init'

2👍

Check your class RenderView()

the super class instantiation should be :

super(RenderView, self).__init__(*args, **kwargs)

Leave a comment