Skip to content

Commit 19fa4ec

Browse files
committed
fixup: type aliases is 3.12, 3.8 equivalent just drops the type keyword
1 parent b13e26f commit 19fa4ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/packages/Python/lldbsuite/test/gdbclientutils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ class SpecialResponse(Enum):
126126

127127
RESPONSE_DISCONNECT = SpecialResponse.RESPONSE_DISCONNECT
128128
RESPONSE_NONE = SpecialResponse.RESPONSE_NONE
129-
type Response = Union[str, SpecialResponse]
129+
Response = Union[str, SpecialResponse]
130130

131131
def __init__(self):
132132
self.packetLog = PacketLog()

0 commit comments

Comments
 (0)