fix typo in lp connector (#548)
This commit is contained in:
parent
c11d192e65
commit
f23bcacabe
|
@ -19,7 +19,7 @@ from ..escpos import Escpos
|
||||||
def is_usable() -> bool:
|
def is_usable() -> bool:
|
||||||
"""Indicate whether this component can be used due to dependencies."""
|
"""Indicate whether this component can be used due to dependencies."""
|
||||||
usable = False
|
usable = False
|
||||||
if sys.platform.startswith("win"):
|
if not sys.platform.startswith("win"):
|
||||||
usable = True
|
usable = True
|
||||||
return usable
|
return usable
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue