Skip to content

Commit

Permalink
Fix return type of bulkCmd
Browse files Browse the repository at this point in the history
  • Loading branch information
Rawk committed Aug 9, 2024
1 parent fc8c092 commit 30f849d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pysnmp/hlapi/asyncio/cmdgen.py
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ async def bulkCmd(
maxRepetitions: int,
*varBinds,
**options
) -> "tuple[errind.ErrorIndication, Integer32 | int, Integer32 | int, tuple[ObjectType]]":
) -> "tuple[errind.ErrorIndication, Integer32 | int, Integer32 | int, tuple[tuple[ObjectType, ...], ...]]":
r"""Creates a generator to perform SNMP GETBULK query.
When iterator gets advanced by :py:mod:`asyncio` main loop,
Expand Down

0 comments on commit 30f849d

Please sign in to comment.