PEP fixes

This commit is contained in:
Oliver Walters 2020-05-21 13:53:17 +10:00
parent 3d8c059a43
commit b78fe88c26
3 changed files with 5 additions and 6 deletions

View File

@ -19,6 +19,7 @@ def rename_template(instance, filename):
return os.path.join('report', 'template', filename) return os.path.join('report', 'template', filename)
class ReportTemplate(models.Model): class ReportTemplate(models.Model):
""" """
Reporting template model. Reporting template model.

View File

@ -1,3 +1,2 @@
from django.test import TestCase # -*- coding: utf-8 -*-
from __future__ import unicode_literals
# Create your tests here.

View File

@ -1,3 +1,2 @@
from django.shortcuts import render # -*- coding: utf-8 -*-
from __future__ import unicode_literals
# Create your views here.