Skip to content

Commit

Permalink
Fix formatting with Black
Browse files Browse the repository at this point in the history
  • Loading branch information
nonprofittechy committed Jan 19, 2024
1 parent 2814e4d commit 38fb410
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docassemble/AssemblyLine/al_general.py
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,13 @@ def names_and_addresses_on_one_line(
"""
return comma_and_list(
[
str(person) + ", " + (person.address.on_one_line(bare=bare) if isinstance(person.address, ALAddress) else str(person.address.on_one_line()))
str(person)
+ ", "
+ (
person.address.on_one_line(bare=bare)
if isinstance(person.address, ALAddress)
else str(person.address.on_one_line())
)
for person in self
],
comma_string=comma_string,
Expand Down

0 comments on commit 38fb410

Please sign in to comment.