We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c02affd commit bfd9b88Copy full SHA for bfd9b88
1 file changed
src/debugpy/adapter/components.py
@@ -36,7 +36,7 @@ class Component(util.Observable):
36
to wait_for() a change caused by another component.
37
"""
38
39
- def __init__(self, session: Session, stream: Union[messaging.JsonIOStream, None]=None, channel: Union[messaging.JsonMessageChannel, None]=None):
+ def __init__(self, session: "Session", stream: "Union[messaging.JsonIOStream, None]"=None, channel: "Union[messaging.JsonMessageChannel, None]"=None):
40
assert (stream is None) ^ (channel is None)
41
42
try:
0 commit comments