File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -431,7 +431,9 @@ class OMCProcess:
431
431
def __init__ (
432
432
self ,
433
433
timeout : float = 10.00 ,
434
+ ** kwargs ,
434
435
) -> None :
436
+ super ().__init__ (** kwargs )
435
437
436
438
# store variables
437
439
self ._timeout = timeout
@@ -598,7 +600,9 @@ def _omc_port_get(self) -> str:
598
600
599
601
class OMCProcessDockerHelper :
600
602
601
- def __init__ (self ) -> None :
603
+ def __init__ (self , ** kwargs ) -> None :
604
+ super ().__init__ (** kwargs )
605
+
602
606
self ._dockerExtraArgs : list = []
603
607
self ._dockerOpenModelicaPath : Optional [str ] = None
604
608
self ._dockerNetwork : Optional [str ] = None
@@ -655,7 +659,7 @@ def get_docker_container_id(self) -> str:
655
659
return self ._dockerCid
656
660
657
661
658
- class OMCProcessDocker (OMCProcess , OMCProcessDockerHelper ):
662
+ class OMCProcessDocker (OMCProcessDockerHelper , OMCProcess ):
659
663
660
664
def __init__ (
661
665
self ,
@@ -830,7 +834,7 @@ def _omc_docker_start(self) -> Tuple[subprocess.Popen, DummyPopen]:
830
834
return omc_process , docker_process
831
835
832
836
833
- class OMCProcessDockerContainer (OMCProcess , OMCProcessDockerHelper ):
837
+ class OMCProcessDockerContainer (OMCProcessDockerHelper , OMCProcess ):
834
838
835
839
def __init__ (
836
840
self ,
You can’t perform that action at this time.
0 commit comments