From 88db4ceb21b6a68d50e964528625ff54d3f07c84 Mon Sep 17 00:00:00 2001 From: sukhman Date: Wed, 2 Jul 2025 13:26:52 +0530 Subject: [PATCH] Fix lint --- libp2p/identity/identify_push/identify_push.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libp2p/identity/identify_push/identify_push.py b/libp2p/identity/identify_push/identify_push.py index 5a71cc38..914264ed 100644 --- a/libp2p/identity/identify_push/identify_push.py +++ b/libp2p/identity/identify_push/identify_push.py @@ -136,7 +136,7 @@ async def push_identify_to_peer( host: IHost, peer_id: ID, observed_multiaddr: Multiaddr | None = None, - limit=trio.Semaphore(CONCURRENCY_LIMIT), + limit: trio.Semaphore = trio.Semaphore(CONCURRENCY_LIMIT), ) -> bool: """ Push an identify message to a specific peer.