From 1c9adef883101c83d11ef187d3eac5a1fff26656 Mon Sep 17 00:00:00 2001 From: boyska Date: Mon, 25 Dec 2023 15:30:12 +0100 Subject: [PATCH] refactor --- sergio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sergio.py b/sergio.py index 04de99a..352b9aa 100755 --- a/sergio.py +++ b/sergio.py @@ -154,7 +154,7 @@ class CommandStatus(LookupEnum, enum.StrEnum): class Pira: - END_OF_MESSAGE = "".join([chr(13), chr(10), chr(13), chr(10)]) + END_OF_MESSAGE = "\r\n\r\n" def __init__(self, backend: Backends): self.log = logging.getLogger("Pira")