I want to use django.views.generic.edit.FormView and since it's a generic, I'm giving it a type argument (MyForm):
class MyView(FormView[MyForm]):
...
But it causes this error:
TypeError: 'type' object is not subscriptable
What's the proper way to pass type arguments to FormView?