Skip to content

Commit

Permalink
Removed extension argument for get()
Browse files Browse the repository at this point in the history
  • Loading branch information
sai1274 committed Feb 23, 2024
1 parent b597be8 commit 612cb65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pygnmi/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ def convert_encoding(self, requested_encoding: str, is_encoding_explicitly_set:
encoding = requested_encoding or self.__encoding
return Encoding.Value(encoding.upper()) # may raise ValueError

def get(self, prefix: str = "", path: list = None, target: str = None, datatype: str = "all", encoding: str = None, extension: dict = None):
def get(self, prefix: str = "", path: list = None, target: str = None, datatype: str = "all", encoding: str = None):
"""
Collecting the information about the resources from defined paths.
Expand Down

0 comments on commit 612cb65

Please sign in to comment.