Commit ceb076c5 by Bálint Máhonfai

Fix flake8 warnings

parent af1249a5
Pipeline #921 passed with stage
in 0 seconds
...@@ -35,7 +35,8 @@ from django.views.generic import TemplateView ...@@ -35,7 +35,8 @@ from django.views.generic import TemplateView
from braces.views import LoginRequiredMixin from braces.views import LoginRequiredMixin
from ..store_api import Store, NoStoreException, NotOkException, NoOrgIdException from ..store_api import (Store, NoStoreException,
NotOkException, NoOrgIdException)
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
...@@ -73,7 +74,8 @@ class StoreList(LoginRequiredMixin, TemplateView): ...@@ -73,7 +74,8 @@ class StoreList(LoginRequiredMixin, TemplateView):
except NoOrgIdException: except NoOrgIdException:
messages.warning(self.request, messages.warning(self.request,
_("Your organization ID is not set." _("Your organization ID is not set."
" To use the store, you need a unique organization ID.")) " To use the store, you need a"
" unique organization ID."))
except NotOkException: except NotOkException:
messages.warning(self.request, _("Store has some problems now." messages.warning(self.request, _("Store has some problems now."
" Try again later.")) " Try again later."))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment