Skip to content

Commit c5217ad

Browse files
committed
[__init__] reorder imports
1 parent 7b2c6e1 commit c5217ad

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

OMPython/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,17 +36,17 @@
3636
CONDITIONS OF OSMC-PL.
3737
"""
3838

39-
from OMPython.OMCSession import OMCSessionCmd, OMCSessionZMQ, OMCSessionException
40-
from OMPython.ModelicaSystem import ModelicaSystem, ModelicaSystemCmd, ModelicaSystemError, LinearizationResult
39+
from OMPython.ModelicaSystem import LinearizationResult, ModelicaSystem, ModelicaSystemCmd, ModelicaSystemError
40+
from OMPython.OMCSession import OMCSessionCmd, OMCSessionException, OMCSessionZMQ
4141

4242
# global names imported if import 'from OMPython import *' is used
4343
__all__ = [
44+
'LinearizationResult',
4445
'ModelicaSystem',
4546
'ModelicaSystemCmd',
4647
'ModelicaSystemError',
47-
'LinearizationResult',
4848

49+
'OMCSessionCmd',
4950
'OMCSessionException',
5051
'OMCSessionZMQ',
51-
'OMCSessionCmd',
5252
]

0 commit comments

Comments
 (0)