We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89f88e6 commit 7adeb26Copy full SHA for 7adeb26
repos/kaleido/py/kaleido/scopes/base.py
@@ -185,7 +185,7 @@ def _ensure_kaleido(self):
185
# Set up thread to asynchronously collect standard error stream
186
if self._std_error_thread is None or not self._std_error_thread.is_alive():
187
self._std_error_thread = Thread(target=self._collect_standard_error)
188
- self._std_error_thread.setDaemon(True)
+ self._std_error_thread.daemon = True
189
self._std_error_thread.start()
190
191
# Read startup message and check for errors
0 commit comments