Skip to content

Commit bef1dfd

Browse files
committed
[ModelicaSystem] reorder imports
1 parent e2adb47 commit bef1dfd

1 file changed

Lines changed: 10 additions & 3 deletions

File tree

OMPython/ModelicaSystem.py

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
import itertools
3838
import logging
3939
import numbers
40-
import numpy as np
4140
import os
4241
import queue
4342
import textwrap
@@ -46,8 +45,16 @@
4645
import warnings
4746
import xml.etree.ElementTree as ET
4847

49-
from OMPython.OMCSession import (OMCSessionException, OMCSessionRunData, OMCSessionZMQ,
50-
OMCProcess, OMCProcessLocal, OMCPath)
48+
import numpy as np
49+
50+
from OMPython.OMCSession import (
51+
OMCSessionException,
52+
OMCSessionRunData,
53+
OMCSessionZMQ,
54+
OMCProcess,
55+
OMCProcessLocal,
56+
OMCPath,
57+
)
5158

5259
# define logger using the current module name as ID
5360
logger = logging.getLogger(__name__)

0 commit comments

Comments
 (0)