From: Daniel Axtens Date: Tue, 30 Oct 2018 13:45:44 +0000 (+1100) Subject: views: no longer import Series in __init__.py X-Git-Tag: v2.2.0-rc1~229 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ee20fdea757e393f5951aaf640331176fc6cb807;p=thirdparty%2Fpatchwork.git views: no longer import Series in __init__.py Fix a pep8 error due to an unused import. Fixes: 780b1a2d07ad ("views: Use select_related, not prefetch_related") Signed-off-by: Daniel Axtens --- diff --git a/patchwork/views/__init__.py b/patchwork/views/__init__.py index cea61486..6ec53dda 100644 --- a/patchwork/views/__init__.py +++ b/patchwork/views/__init__.py @@ -14,7 +14,6 @@ from patchwork.models import BundlePatch from patchwork.models import Patch from patchwork.models import Project from patchwork.models import Check -from patchwork.models import Series from patchwork.paginator import Paginator