Skip to content

Commit 88db4ce

Browse files
committed
Fix lint
1 parent ad0b550 commit 88db4ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libp2p/identity/identify_push/identify_push.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ async def push_identify_to_peer(
136136
host: IHost,
137137
peer_id: ID,
138138
observed_multiaddr: Multiaddr | None = None,
139-
limit=trio.Semaphore(CONCURRENCY_LIMIT),
139+
limit: trio.Semaphore = trio.Semaphore(CONCURRENCY_LIMIT),
140140
) -> bool:
141141
"""
142142
Push an identify message to a specific peer.

0 commit comments

Comments
 (0)