From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5F08815803E for ; Tue, 2 Jan 2024 18:03:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 82E992BC03F; Tue, 2 Jan 2024 18:03:20 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 66B262BC03F for ; Tue, 2 Jan 2024 18:03:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3D605341B52 for ; Tue, 2 Jan 2024 18:03:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9F1FD1492 for ; Tue, 2 Jan 2024 18:03:17 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1704218415.cb88e6fce4386ba30d378edfb59964fa2a4cc9c3.vapier@gentoo> Subject: [gentoo-commits] proj/pax-utils:master commit in: / X-VCS-Repository: proj/pax-utils X-VCS-Files: lddtree.py X-VCS-Directories: / X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: cb88e6fce4386ba30d378edfb59964fa2a4cc9c3 X-VCS-Branch: master Date: Tue, 2 Jan 2024 18:03:17 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 75df2c7c-c027-4528-99e7-ddec9c6911d6 X-Archives-Hash: 352977a2d359de23921647fac083927a commit: cb88e6fce4386ba30d378edfb59964fa2a4cc9c3 Author: Mike Frysinger chromium org> AuthorDate: Tue Jan 2 18:00:15 2024 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Tue Jan 2 18:00:15 2024 +0000 URL: https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=cb88e6fc lddtree: add some more typing info for mypy Signed-off-by: Mike Frysinger chromium.org> Signed-off-by: Mike Frysinger gentoo.org> lddtree.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lddtree.py b/lddtree.py index 8a42627..8ccd855 100755 --- a/lddtree.py +++ b/lddtree.py @@ -491,7 +491,7 @@ def ParseELF( if _first: _all_libs = {} ldpaths = ldpaths.copy() - ret = { + ret: Dict[str, Any] = { "interp": None, "path": path if display is None else display, "realpath": path,