Silence the PEP8 warning F405 "may be undefined, or defined from star imports".
Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
@@ -18,7 +18,14 @@ from django_downloadview import VirtualDownloadView, VirtualFile
|
||||
from pure_pagination.mixins import PaginationMixin
|
||||
|
||||
from .forms import ChoiceForm
|
||||
from .mixins import * # NOQA
|
||||
from .mixins import (
|
||||
DeleteExtraDataMixin, ExtraContextMixin, FormExtraKwargsMixin,
|
||||
MultipleObjectMixin, ObjectActionMixin,
|
||||
ObjectListPermissionFilterMixin, ObjectNameMixin,
|
||||
ObjectPermissionCheckMixin, RedirectionMixin,
|
||||
ViewPermissionCheckMixin
|
||||
)
|
||||
|
||||
from .settings import setting_paginate_by
|
||||
|
||||
__all__ = (
|
||||
|
||||
@@ -17,7 +17,13 @@ from .forms import (
|
||||
FilterForm, LicenseForm, LocaleProfileForm, LocaleProfileForm_view,
|
||||
PackagesLicensesForm, UserForm, UserForm_view
|
||||
)
|
||||
from .generics import * # NOQA
|
||||
from .generics import ( # NOQA
|
||||
AssignRemoveView, ConfirmView, FormView, MultiFormView,
|
||||
MultipleObjectConfirmActionView, MultipleObjectFormActionView,
|
||||
SingleObjectCreateView, SingleObjectDeleteView,
|
||||
SingleObjectDetailView, SingleObjectEditView, SingleObjectListView,
|
||||
SimpleView
|
||||
)
|
||||
from .menus import menu_tools, menu_setup
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user