1
0
mirror of https://github.com/python-escpos/python-escpos synced 2025-10-23 09:30:00 +00:00

Fixed lack of spacing for multi-line strings (#619)

Co-authored-by: Wes Appler <wes@lamemakes>
This commit is contained in:
Wesley Appler
2024-01-11 06:35:03 -05:00
committed by GitHub
parent 776b8a26ad
commit a865b715f3
5 changed files with 9 additions and 9 deletions

View File

@@ -43,8 +43,8 @@ def dependency_pyserial(func):
"""Throw a RuntimeError if pyserial not installed."""
if not is_usable():
raise RuntimeError(
"Printing with Serial requires the pyserial library to"
"be installed. Please refer to the documentation on"
"Printing with Serial requires the pyserial library to "
"be installed. Please refer to the documentation on "
"what to install and install the dependencies for pyserial."
)
return func(*args, **kwargs)