Skip to content

Commit 7b2c6e1

Browse files
committed
[ModelicaSystem] reorder imports
1 parent 20ea325 commit 7b2c6e1

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

OMPython/ModelicaSystem.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,21 +33,21 @@
3333
"""
3434

3535
import csv
36+
from dataclasses import dataclass
37+
import importlib
3638
import logging
3739
import numbers
40+
import numpy as np
3841
import os
42+
import pathlib
3943
import platform
4044
import re
4145
import subprocess
4246
import tempfile
43-
import xml.etree.ElementTree as ET
44-
import numpy as np
45-
import importlib
46-
import pathlib
47-
from dataclasses import dataclass
4847
import textwrap
4948
from typing import Optional
5049
import warnings
50+
import xml.etree.ElementTree as ET
5151

5252
from OMPython.OMCSession import OMCSessionZMQ, OMCSessionException
5353

0 commit comments

Comments
 (0)