Skip to content

Commit af70761

Browse files
committed
fix import loops (pylint)
1 parent e22cf4a commit af70761

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

OMPython/Base/om_runner_abc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import sys
1212
from typing import Optional, Type
1313

14-
from OMPython.Base import (
14+
from OMPython.Base.om_abc import (
1515
OMSessionException,
1616
OMSessionABC,
1717
OMPathABC,

OMPython/OMC/omc_session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
OMSessionABC,
3131
OMPathABC,
3232
)
33-
from OMPython.OMC import (
33+
from OMPython.OMC.omc_path_py311 import (
3434
OMCPath,
3535
)
3636

OMPython/Runner/om_session_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
OMSessionException,
1515
OMSessionRunnerABC,
1616
)
17-
from OMPython.Runner import (
17+
from OMPython.Runner.om_path_runner import (
1818
OMPathRunnerLocal,
1919
)
2020

0 commit comments

Comments
 (0)