Skip to content

Commit

Permalink
Linting: declare long config description using shorter concatenated s…
Browse files Browse the repository at this point in the history
…tring literals.
  • Loading branch information
jayaddison committed May 8, 2024
1 parent 225edf6 commit 46e97df
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion quicktill/tillconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,11 @@

publogo = config.ConfigItem(
'core:sitelogo', None, display_name="Site logo",
description="Logo image to be printed on receipts. To update it, use 'base64 logo.pbm | runtill config -s core:sitelogo'")
description=(
"Logo image to be printed on receipts. "
"To update it, use 'base64 logo.pbm | runtill config -s core:sitelogo'"
)
)
pubname = config.ConfigItem(
'core:sitename', "Default site name", display_name="Site name",
description="Site name to be printed on receipts")
Expand Down

0 comments on commit 46e97df

Please sign in to comment.