Skip to content

Commit bdbf970

Browse files
committed
[ModelicaSystem] reorder imports
1 parent c420751 commit bdbf970

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

OMPython/ModelicaSystem.py

Lines changed: 9 additions & 2 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,7 +45,15 @@
4645
import warnings
4746
import xml.etree.ElementTree as ET
4847

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

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

0 commit comments

Comments
 (0)