[pushed] Remove unused import

Message ID 20240223184514.3590037-1-tromey@adacore.com
State New
Headers
Series [pushed] Remove unused import |

Checks

Context Check Description
linaro-tcwg-bot/tcwg_gdb_build--master-arm warning Patch is already merged
linaro-tcwg-bot/tcwg_gdb_build--master-aarch64 warning Patch is already merged

Commit Message

Tom Tromey Feb. 23, 2024, 6:45 p.m. UTC
  flake8 points out that dap/io.py does not use send_gdb.  This patch
removes the unused import.
---
 gdb/python/lib/gdb/dap/io.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

diff --git a/gdb/python/lib/gdb/dap/io.py b/gdb/python/lib/gdb/dap/io.py
index 81e835c7527..bbf822d60bf 100644
--- a/gdb/python/lib/gdb/dap/io.py
+++ b/gdb/python/lib/gdb/dap/io.py
@@ -15,7 +15,7 @@ 
 
 import json
 
-from .startup import start_thread, send_gdb, log, log_stack, LogLevel
+from .startup import start_thread, log, log_stack, LogLevel
 
 
 def read_json(stream):