We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 256af25 commit 2c92c00Copy full SHA for 2c92c00
1 file changed
OMPython/OMCSession.py
@@ -642,7 +642,9 @@ def __init__(
642
"""
643
644
# store variables
645
- self._timeout = timeout
+ # set_timeout() is used to define the value of _timeout as it includes additional checks
646
+ self._timeout: float
647
+ self.set_timeout(timeout=timeout)
648
# generate a random string for this instance of OMC
649
self._random_string = uuid.uuid4().hex
650
# get a temporary directory
0 commit comments