From 2211d7a98b0c01d373005624a0106a5bd4ae2141 Mon Sep 17 00:00:00 2001 From: syntron Date: Wed, 21 Jan 2026 20:50:25 +0100 Subject: [PATCH] [OMCSession] fix import order; zmq is a 3rd party package --- OMPython/OMCSession.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OMPython/OMCSession.py b/OMPython/OMCSession.py index 6b5b2b3d..7f85766d 100644 --- a/OMPython/OMCSession.py +++ b/OMPython/OMCSession.py @@ -23,10 +23,10 @@ from typing import Any, Optional, Tuple import uuid import warnings -import zmq import psutil import pyparsing +import zmq # TODO: replace this with the new parser from OMPython.OMTypedParser import om_parser_typed