Skip to content

Commit a3a33a8

Browse files
committed
Merge branch 'reorder_imports' into merge_all
2 parents 7e2ac02 + 0cddd8b commit a3a33a8

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

OMPython/ModelicaSystem.py

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

48+
import numpy as np
49+
4950
from OMPython.OMCSession import (OMCSessionException, OMCSessionRunData, OMCSessionZMQ,
5051
OMCProcess, OMCPath)
5152

OMPython/OMCSession.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,6 @@
4242
import os
4343
import pathlib
4444
import platform
45-
import psutil
46-
import pyparsing
4745
import re
4846
import shutil
4947
import signal
@@ -56,6 +54,9 @@
5654
import warnings
5755
import zmq
5856

57+
import psutil
58+
import pyparsing
59+
5960
# TODO: replace this with the new parser
6061
from OMPython.OMTypedParser import parseString as om_parser_typed
6162
from OMPython.OMParser import om_parser_basic

0 commit comments

Comments
 (0)