From: Tom Tromey Date: Fri, 23 Feb 2024 18:42:21 +0000 (-0700) Subject: Remove unused import X-Git-Tag: gdb-15-branchpoint~894 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bf8ab2ae8d33e46bb6612408c75e75a6de137ccc;p=thirdparty%2Fbinutils-gdb.git Remove unused import flake8 points out that dap/io.py does not use send_gdb. This patch removes the unused import. --- 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):