Minor edits in ticketouput docs (#285)

This commit is contained in:
Tobias Kunze
2016-10-24 23:22:51 +02:00
committed by Raphael Michel
parent aa63a4cded
commit 2de328a33b

View File

@@ -39,9 +39,8 @@ class BaseTicketOutput:
@property @property
def verbose_name(self) -> str: def verbose_name(self) -> str:
""" """
A human-readable name for this ticket output. This should A human-readable name for this ticket output. This should be short but
be short but self-explaining. Good examples include 'PDF tickets' self-explanatory. Good examples include 'PDF tickets' and 'Passbook'.
and 'Passbook'.
""" """
raise NotImplementedError() # NOQA raise NotImplementedError() # NOQA
@@ -111,6 +110,7 @@ class BaseTicketOutput:
@property @property
def download_button_icon(self) -> str: def download_button_icon(self) -> str:
""" """
The name of the icon on the download button in the frontend The name of the FontAwesome icon on the download button in the frontend
(without the fa- prefix).
""" """
return None return None