From 8e0dfa9c6f724c4e88655e965fc48401ccea631c Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Thu, 20 Aug 2020 14:05:55 +1000 Subject: [PATCH] PEP fix --- InvenTree/report/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/InvenTree/report/models.py b/InvenTree/report/models.py index 1e0fce3658..697f5691d5 100644 --- a/InvenTree/report/models.py +++ b/InvenTree/report/models.py @@ -40,6 +40,7 @@ if settings.LATEX_ENABLED: from django.http import HttpResponse + class TexResponse(HttpResponse): def __init__(self, content, filename=None): super().__init__(content_type="application/txt")