mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
Blacken code.
This commit is contained in:
parent
cb25e2f106
commit
dd5196fbfc
36 changed files with 160 additions and 189 deletions
|
|
@ -10,8 +10,7 @@ from debugpy.common import log
|
|||
|
||||
|
||||
class CapturedOutput(object):
|
||||
"""Captures stdout and stderr of the debugged process.
|
||||
"""
|
||||
"""Captures stdout and stderr of the debugged process."""
|
||||
|
||||
def __init__(self, session, **fds):
|
||||
self.session = session
|
||||
|
|
@ -59,8 +58,7 @@ class CapturedOutput(object):
|
|||
self._worker_threads.append(thread)
|
||||
|
||||
def wait(self, timeout=None):
|
||||
"""Wait for all remaining output to be captured.
|
||||
"""
|
||||
"""Wait for all remaining output to be captured."""
|
||||
if not self._worker_threads:
|
||||
return
|
||||
log.debug("Waiting for remaining {0} output...", self.session.debuggee_id)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue