Skip to content

Commit 9507927

Browse files
committed
reorder imports in __init__.py
1 parent 4f056f2 commit 9507927

1 file changed

Lines changed: 10 additions & 9 deletions

File tree

OMPython/__init__.py

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,20 @@
1818
OMCPath,
1919
OMCSession,
2020
OMCSessionCmd,
21-
OMCSessionException,
22-
OMCSessionRunData,
23-
OMCSessionZMQ,
24-
OMCSessionPort,
25-
OMCSessionLocal,
2621
OMCSessionDocker,
2722
OMCSessionDockerContainer,
23+
OMCSessionException,
24+
OMCSessionLocal,
25+
OMCSessionPort,
26+
OMCSessionRunData,
2827
OMCSessionWSL,
28+
OMCSessionZMQ,
2929
)
3030

3131
# global names imported if import 'from OMPython import *' is used
3232
__all__ = [
3333
'LinearizationResult',
34+
3435
'ModelicaSystem',
3536
'ModelicaSystemCmd',
3637
'ModelicaSystemDoE',
@@ -40,12 +41,12 @@
4041

4142
'OMCSession',
4243
'OMCSessionCmd',
44+
'OMCSessionDocker',
45+
'OMCSessionDockerContainer',
4346
'OMCSessionException',
44-
'OMCSessionRunData',
45-
'OMCSessionZMQ',
4647
'OMCSessionPort',
4748
'OMCSessionLocal',
48-
'OMCSessionDocker',
49-
'OMCSessionDockerContainer',
49+
'OMCSessionRunData',
5050
'OMCSessionWSL',
51+
'OMCSessionZMQ',
5152
]

0 commit comments

Comments
 (0)