Skip to content

Commit e21a723

Browse files
committed
[OMCProcessDockerHelper] no docker on win32
1 parent ab7c7e1 commit e21a723

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

OMPython/OMCSession.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -611,8 +611,7 @@ def __init__(self) -> None:
611611
@staticmethod
612612
def _omc_process_docker(dockerCid: str, random_string: str, timeout: float) -> Optional[DummyPopen]:
613613
if sys.platform == 'win32':
614-
# TODO: how to handle docker on win32 systems?
615-
return None
614+
raise NotImplementedError("Docker not supported on win32!")
616615

617616
docker_process = None
618617
for idx in range(0, 40):

0 commit comments

Comments
 (0)