Skip to content

Commit e1f4bb5

Browse files
committed
reorder imports in __init__.py
1 parent 23b5b92 commit e1f4bb5

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
@@ -22,19 +22,20 @@
2222
OMCPath,
2323
OMCSession,
2424
OMCSessionCmd,
25-
OMCSessionException,
26-
OMCSessionRunData,
27-
OMCSessionZMQ,
28-
OMCSessionPort,
29-
OMCSessionLocal,
3025
OMCSessionDocker,
3126
OMCSessionDockerContainer,
27+
OMCSessionException,
28+
OMCSessionLocal,
29+
OMCSessionPort,
30+
OMCSessionRunData,
3231
OMCSessionWSL,
32+
OMCSessionZMQ,
3333
)
3434

3535
# global names imported if import 'from OMPython import *' is used
3636
__all__ = [
3737
'LinearizationResult',
38+
3839
'ModelicaSystem',
3940
'ModelicaSystemCmd',
4041
'ModelicaSystemDoE',
@@ -44,12 +45,12 @@
4445

4546
'OMCSession',
4647
'OMCSessionCmd',
48+
'OMCSessionDocker',
49+
'OMCSessionDockerContainer',
4750
'OMCSessionException',
48-
'OMCSessionRunData',
49-
'OMCSessionZMQ',
5051
'OMCSessionPort',
5152
'OMCSessionLocal',
52-
'OMCSessionDocker',
53-
'OMCSessionDockerContainer',
53+
'OMCSessionRunData',
5454
'OMCSessionWSL',
55+
'OMCSessionZMQ',
5556
]

0 commit comments

Comments
 (0)