From ee20fdea757e393f5951aaf640331176fc6cb807 Mon Sep 17 00:00:00 2001 From: Daniel Axtens Date: Wed, 31 Oct 2018 00:45:44 +1100 Subject: [PATCH] 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 --- patchwork/views/__init__.py | 1 - 1 file changed, 1 deletion(-) 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 -- 2.47.3