We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98819cf commit 9618e62Copy full SHA for 9618e62
asyncsnmplib/client.py
@@ -91,7 +91,7 @@ async def get_next_multi(self, oids: Iterable[TOid]
91
vbs = await self._get_next(oids)
92
return [(oid, value) for oid, _, value in vbs if oid[:-1] in oids]
93
94
- async def walk(self, oid: TOid, is_table=False
+ async def walk(self, oid: TOid, is_table: bool,
95
) -> List[Tuple[TOid, TValue]]:
96
next_oid = oid
97
prefixlen = len(oid)
@@ -131,7 +131,7 @@ def close(self):
131
class SnmpV1(Snmp):
132
version = 0
133
134
135
136
137
0 commit comments