We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 702208d commit cce234bCopy full SHA for cce234b
1 file changed
OMPython/OMCSession.py
@@ -648,7 +648,9 @@ def __init__(
648
"""
649
650
# store variables
651
- self._timeout = timeout
+ # set_timeout() is used to define the value of _timeout as it includes additional checks
652
+ self._timeout: float
653
+ self.set_timeout(timeout=timeout)
654
# generate a random string for this instance of OMC
655
self._random_string = uuid.uuid4().hex
656
# get a temporary directory
0 commit comments