aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2024-02-23 11:42:21 -0700
committerTom Tromey <tromey@adacore.com>2024-02-23 11:43:58 -0700
commitbf8ab2ae8d33e46bb6612408c75e75a6de137ccc (patch)
tree1df6bd3681bcfa084b0bbd852d1aaf26590282fc /gdb
parent593318f69b481f32f2a06093d2b9660b4fb77f24 (diff)
downloadbinutils-bf8ab2ae8d33e46bb6612408c75e75a6de137ccc.zip
binutils-bf8ab2ae8d33e46bb6612408c75e75a6de137ccc.tar.gz
binutils-bf8ab2ae8d33e46bb6612408c75e75a6de137ccc.tar.bz2
Remove unused import
flake8 points out that dap/io.py does not use send_gdb. This patch removes the unused import.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/python/lib/gdb/dap/io.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/python/lib/gdb/dap/io.py b/gdb/python/lib/gdb/dap/io.py
index 81e835c..bbf822d 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):