@@ -297,7 +297,9 @@ def get_all_draft_pages_from_space(self, space_key, **kwargs):
297297
298298 def get_all_draft_blog_posts_from_space (self , space_key , ** kwargs ):
299299 """Get all draft blog posts from space."""
300- return self ._get_paged ("content" , params = {"spaceKey" : space_key , "type" : "blogpost" , "status" : "draft" , ** kwargs })
300+ return self ._get_paged (
301+ "content" , params = {"spaceKey" : space_key , "type" : "blogpost" , "status" : "draft" , ** kwargs }
302+ )
301303
302304 # Trash Management
303305 def get_trash_content (self , space_key , ** kwargs ):
@@ -310,7 +312,9 @@ def get_all_pages_from_space_trash(self, space_key, **kwargs):
310312
311313 def get_all_blog_posts_from_space_trash (self , space_key , ** kwargs ):
312314 """Get all blog posts from space trash."""
313- return self ._get_paged ("content" , params = {"spaceKey" : space_key , "type" : "blogpost" , "status" : "trashed" , ** kwargs })
315+ return self ._get_paged (
316+ "content" , params = {"spaceKey" : space_key , "type" : "blogpost" , "status" : "trashed" , ** kwargs }
317+ )
314318
315319 # Export
316320 def export_content (self , content_id , ** kwargs ):
0 commit comments