From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2126) id D03C73858C50; Fri, 23 Feb 2024 18:45:32 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D03C73858C50 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1708713932; bh=lqW+XmRdAuOlc7HGSEW8z6eR8ydtU8fJvNQfzFmUnxM=; h=From:To:Subject:Date:From; b=uE3bb7WNLTOXDgu0Ou8M+0eAAFrVfI+zjb9nePSABJ3X0h/HhXD/pF6Q7nfHxU9Gj tPSSfbZI/g6Om2f56Wudci/UbfEJ9mSVfQyFdRhl5wamq90xZHWNucXb6ZKkXj45pL dpwozL6SF3+h1AgNCLDjONWfe1HSg9vvsm0kDQuE= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Tom Tromey To: gdb-cvs@sourceware.org Subject: [binutils-gdb] Remove unused import X-Act-Checkin: binutils-gdb X-Git-Author: Tom Tromey X-Git-Refname: refs/heads/master X-Git-Oldrev: 593318f69b481f32f2a06093d2b9660b4fb77f24 X-Git-Newrev: bf8ab2ae8d33e46bb6612408c75e75a6de137ccc Message-Id: <20240223184532.D03C73858C50@sourceware.org> Date: Fri, 23 Feb 2024 18:45:32 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3Dbf8ab2ae8d33= e46bb6612408c75e75a6de137ccc commit bf8ab2ae8d33e46bb6612408c75e75a6de137ccc Author: Tom Tromey Date: Fri Feb 23 11:42:21 2024 -0700 Remove unused import =20 flake8 points out that dap/io.py does not use send_gdb. This patch removes the unused import. Diff: --- 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 @@ =20 import json =20 -from .startup import start_thread, send_gdb, log, log_stack, LogLevel +from .startup import start_thread, log, log_stack, LogLevel =20 =20 def read_json(stream):