0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-12-01 11:41:20 +01:00

Fix flake8 errors: W504 line break after binary operator

This commit is contained in:
Karl Hobley 2018-11-22 11:19:12 +00:00
parent cb8148ede2
commit 742027faae

View File

@ -63,8 +63,8 @@ class PublishMenuItem(ActionMenuItem):
return context['user_page_permissions'].for_page(context['parent_page']).can_publish_subpage()
else: # view == 'edit' or 'revisions_revert'
return (
not context['page'].locked and
context['user_page_permissions'].for_page(context['page']).can_publish()
not context['page'].locked
and context['user_page_permissions'].for_page(context['page']).can_publish()
)
def get_context(self, request, parent_context):
@ -91,9 +91,9 @@ class UnpublishMenuItem(ActionMenuItem):
def is_shown(self, request, context):
return (
context['view'] == 'edit' and
not context['page'].locked and
context['user_page_permissions'].for_page(context['page']).can_unpublish()
context['view'] == 'edit'
and not context['page'].locked
and context['user_page_permissions'].for_page(context['page']).can_unpublish()
)
def get_url(self, request, context):
@ -105,9 +105,9 @@ class DeleteMenuItem(ActionMenuItem):
def is_shown(self, request, context):
return (
context['view'] == 'edit' and
not context['page'].locked and
context['user_page_permissions'].for_page(context['page']).can_delete()
context['view'] == 'edit'
and not context['page'].locked
and context['user_page_permissions'].for_page(context['page']).can_delete()
)
def get_url(self, request, context):