From b1f728498bc8972bb94ab61357d6fc87dd90e1d5 Mon Sep 17 00:00:00 2001 From: Johannes Raggam Date: Mon, 8 Mar 2021 14:17:36 +0100 Subject: [PATCH] fix flake8 errors --- src/plone/api/tests/test_content.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/plone/api/tests/test_content.py b/src/plone/api/tests/test_content.py index f840d103..fcbecaf3 100644 --- a/src/plone/api/tests/test_content.py +++ b/src/plone/api/tests/test_content.py @@ -1064,7 +1064,7 @@ def test_find_interface_dict__include_not_query(self): brains = api.content.find( object_provides={ 'query': IContentish.__identifier__, - 'not': INavigationRoot.__identifier__ + 'not': INavigationRoot.__identifier__, }, ) @@ -1085,12 +1085,12 @@ def test_find_interface_dict__all_options(self): parser( { 'query': [IContentish, INavigationRoot.__identifier__], - 'operator': 'and' - } + 'operator': 'and', + }, ), { 'query': [IContentish.__identifier__, INavigationRoot.__identifier__], - 'operator': 'and' + 'operator': 'and', }, )