[Fixed]-Django – Is overriding TemplateView.get with different signature a bad practice?

1👍

The signature should be the same, but you can add custom args and kwargs if you pop them when calling the super class method. The actual method signature of a View (subclass) is get(self, request, *args, **kwargs).

Leave a comment