Skip to content

Commit

Permalink
Reformat project to fix linter (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
lgarber-akamai authored Apr 29, 2024
1 parent f05835e commit bd6deec
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions ansible_specdoc/objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit bd6deec

Please sign in to comment.