We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9d5b36 commit 009b354Copy full SHA for 009b354
1 file changed
OMPython/ModelicaSystem.py
@@ -38,7 +38,6 @@
38
import numbers
39
import numpy as np
40
import os
41
-import pathlib
42
import textwrap
43
from typing import Optional, Any
44
import warnings
@@ -118,7 +117,7 @@ def __init__(
118
117
timeout: Optional[float] = None,
119
) -> None:
120
self._session = session
121
- self._runpath = pathlib.Path(runpath).resolve().absolute()
+ self._runpath = runpath
122
self._model_name = modelname
123
self._timeout = timeout
124
self._args: dict[str, str | None] = {}
0 commit comments