Removing debug statement

CURA-11596
This commit is contained in:
saumya.jain 2024-02-07 11:05:48 +01:00
parent bb28a7c506
commit 206b530724

View file

@ -88,7 +88,6 @@ class SingleInstance:
def __readCommands(self, connection: QLocalSocket) -> None:
line = connection.readLine()
print(f"line is {line}")
while len(line) != 0: # There is also a .canReadLine()
try:
payload = json.loads(str(line, encoding = "ascii").strip())