We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 938a124 commit 97e8333Copy full SHA for 97e8333
1 file changed
OMPython/OMCSession.py
@@ -677,7 +677,9 @@ def __init__(
677
"""
678
679
# store variables
680
- self._timeout = timeout
+ # set_timeout() is used to define the value of _timeout as it includes additional checks
681
+ self._timeout: float
682
+ self.set_timeout(timeout=timeout)
683
# generate a random string for this instance of OMC
684
self._random_string = uuid.uuid4().hex
685
# get a temporary directory
0 commit comments