From bd6deec3ef66a9995117c9b0677438ddbc3b686b Mon Sep 17 00:00:00 2001 From: Lena Garber <114949949+lgarber-akamai@users.noreply.github.com> Date: Mon, 29 Apr 2024 15:54:46 -0400 Subject: [PATCH] Reformat project to fix linter (#36) --- ansible_specdoc/objects.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/ansible_specdoc/objects.py b/ansible_specdoc/objects.py index eb81d81..388bc76 100644 --- a/ansible_specdoc/objects.py +++ b/ansible_specdoc/objects.py @@ -291,9 +291,11 @@ def ansible_doc(self) -> Tuple[Dict[str, Any], Dict[str, Any], List]: documentation = { "description": description, - "short_description": self.short_description - if self.short_description is not None - else " ".join(description), + "short_description": ( + self.short_description + if self.short_description is not None + else " ".join(description) + ), "author": self.author, "requirements": self.requirements, "notes": self.notes,