Skip to content

Commit dd68b6a

Browse files
committed
rename debugger.types.py to prevent problems running in venv environments
1 parent 446dafe commit dd68b6a

File tree

8 files changed

+7
-7
lines changed

8 files changed

+7
-7
lines changed

robotcode/debugger/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ async def run_robot(
127127
from ..utils.debugpy import enable_debugpy, wait_for_debugpy_connected
128128
from ..utils.net import check_free_port
129129
from .debugger import Debugger
130-
from .types import Event
130+
from .dap_types import Event
131131

132132
@_logger.call
133133
async def start_debugpy_async() -> None:

robotcode/debugger/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from ..jsonrpc2.server import TcpParams
77
from ..utils.logging import LoggingDescriptor
88
from .protocol import DebugAdapterProtocol
9-
from .types import Event
9+
from .dap_types import Event
1010

1111

1212
class DAPClientProtocol(DebugAdapterProtocol):
File renamed without changes.

robotcode/debugger/debugger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
from ..utils.event import event
2424
from ..utils.logging import LoggingDescriptor
25-
from .types import (
25+
from .dap_types import (
2626
Breakpoint,
2727
ContinuedEvent,
2828
ContinuedEventBody,

robotcode/debugger/launcher/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from ...utils.logging import LoggingDescriptor
1111
from ..client import DAPClient, DAPClientError
1212
from ..protocol import DebugAdapterProtocol
13-
from ..types import (
13+
from ..dap_types import (
1414
Capabilities,
1515
ConfigurationDoneArguments,
1616
ConfigurationDoneRequest,

robotcode/debugger/listeners.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from typing import Any, Dict, Iterator, List, Optional, Union, cast
22

33
from .debugger import Debugger
4-
from .types import Event, Model
4+
from .dap_types import Event, Model
55

66

77
class RobotExecutionEvent(Model):

robotcode/debugger/protocol.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
)
3131
from ..utils.inspect import ensure_coroutine
3232
from ..utils.logging import LoggingDescriptor
33-
from .types import (
33+
from .dap_types import (
3434
ErrorBody,
3535
ErrorResponse,
3636
Event,

robotcode/debugger/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from ..utils.logging import LoggingDescriptor
88
from .debugger import Debugger
99
from .protocol import DebugAdapterProtocol
10-
from .types import (
10+
from .dap_types import (
1111
ConfigurationDoneArguments,
1212
ContinueArguments,
1313
ContinueResponseBody,

0 commit comments

Comments
 (0)