From bf8ab2ae8d33e46bb6612408c75e75a6de137ccc Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Fri, 23 Feb 2024 11:42:21 -0700 Subject: [PATCH] Remove unused import 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(-) 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): -- 2.39.5