remove debug statement

CURA-11596
This commit is contained in:
saumya.jain 2024-02-07 12:16:01 +01:00
parent 206b530724
commit 313a7f7068

View file

@ -83,7 +83,6 @@ class SingleInstance:
connection = self._single_instance_server.nextPendingConnection()
if connection is not None:
x = self.__readCommands(connection)
connection.readyRead.connect(lambda c = connection: self.__readCommands(c))
def __readCommands(self, connection: QLocalSocket) -> None: