Skip to content

Commit 65425b8

Browse files
committed
Merge branch 'reorder_imports' into v4.1.0-status20260123
2 parents 0288723 + 1a3762b commit 65425b8

1 file changed

Lines changed: 13 additions & 9 deletions

File tree

OMPython/__init__.py

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,32 +15,36 @@
1515
ModelicaSystemError,
1616
)
1717
from OMPython.OMCSession import (
18+
OMCPath,
1819
OMCSessionCmd,
19-
OMCSessionException,
20-
OMCSessionRunData,
21-
OMCSessionZMQ,
22-
OMCSessionPort,
23-
OMCSessionLocal,
2420
OMCSessionDocker,
2521
OMCSessionDockerContainer,
22+
OMCSessionException,
23+
OMCSessionLocal,
24+
OMCSessionPort,
25+
OMCSessionRunData,
2626
OMCSessionWSL,
27+
OMCSessionZMQ,
2728
)
2829

2930
# global names imported if import 'from OMPython import *' is used
3031
__all__ = [
3132
'LinearizationResult',
33+
3234
'ModelicaSystem',
3335
'ModelicaSystemCmd',
3436
'ModelicaSystemDoE',
3537
'ModelicaSystemError',
3638

39+
'OMCPath',
40+
3741
'OMCSessionCmd',
42+
'OMCSessionDocker',
43+
'OMCSessionDockerContainer',
3844
'OMCSessionException',
39-
'OMCSessionRunData',
40-
'OMCSessionZMQ',
4145
'OMCSessionPort',
4246
'OMCSessionLocal',
43-
'OMCSessionDocker',
44-
'OMCSessionDockerContainer',
47+
'OMCSessionRunData',
4548
'OMCSessionWSL',
49+
'OMCSessionZMQ',
4650
]

0 commit comments

Comments
 (0)