| 10 |  | `TemplateResponseMixin.render_to_response` call `SimpleTemplateResponse. __init__` with a `charset` keyword argument. | 
          
            | 11 |  | But  above method passed charset which is none-keyword argument. | 
          
            | 12 |  | Also `content_type` and `status` are same too. | 
          
            |  | 10 | `TemplateResponseMixin.render_to_response` calls `SimpleTemplateResponse. __init__` with a `charset` keyword argument. | 
          
            |  | 11 | But, the above method passed `charset` as a non-keyword argument. | 
          
            |  | 12 | In addition, `content_type`, `status` are passed also as nonーkeyword arguments, which seems in a wrong order. |