Skip to content

Commit 38ee0fe

Browse files
Format with black
1 parent 349a6e2 commit 38ee0fe

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

docassemble/AssemblyLine/al_document.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2059,10 +2059,10 @@ def download_list_html(
20592059
"""
20602060
if not view_label:
20612061
view_label = self.view_label or word("View")
2062-
2062+
20632063
if not download_label:
20642064
download_label = self.download_label or word("Download")
2065-
2065+
20662066
if not send_label:
20672067
send_label = self.send_label or word("Send")
20682068

@@ -2255,7 +2255,10 @@ def download_html(
22552255
return html
22562256

22572257
def send_email_table_row(
2258-
self, key: str = "final", send_label: Optional[str] = None, send_icon: str = "envelope"
2258+
self,
2259+
key: str = "final",
2260+
send_label: Optional[str] = None,
2261+
send_icon: str = "envelope",
22592262
) -> str:
22602263
"""
22612264
Generate HTML doc table row for an input box and button that allows
@@ -2340,7 +2343,7 @@ def send_button_to_html(
23402343
"""
23412344
if label is None:
23422345
label = self.send_label or word("Send")
2343-
2346+
23442347
if not self.has_enabled_documents():
23452348
return "" # Don't let people email an empty set of documents
23462349
name = html_safe_str(self.instanceName) + random_suffix()

0 commit comments

Comments
 (0)