Skip to content

Commit

Permalink
Merge pull request #11 from cesbit/dev
Browse files Browse the repository at this point in the history
fix typing
  • Loading branch information
joente authored Sep 18, 2024
2 parents f584a98 + 4fb260e commit 44ffb0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion asyncsnmplib/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def __init__(self, message: str):
async def snmp_queries(
address: str,
config: dict,
queries: Tuple[TOid, ...]) -> Dict[str, List[Tuple[TOid, TValue]]]:
queries: Tuple[TOid, ...]) -> Dict[str, List[Dict[str, TValue]]]:

version = config.get('version', '2c')

Expand Down
2 changes: 1 addition & 1 deletion asyncsnmplib/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.2.0'
__version__ = '0.2.1'

0 comments on commit 44ffb0c

Please sign in to comment.