We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59c12c6 commit 6e702b3Copy full SHA for 6e702b3
1 file changed
sagemcom_api/client.py
@@ -53,7 +53,7 @@ def __init__(
53
host: str,
54
username: str,
55
password: str,
56
- authentication_method: EncryptionMethod,
+ authentication_method: EncryptionMethod | None = None,
57
session: ClientSession | None = None,
58
ssl: bool | None = False,
59
verify_ssl: bool | None = True,
@@ -307,7 +307,7 @@ async def get_encryption_method(self):
307
pass
308
309
raise LoginTimeoutException
310
-
+
311
async def get_value_by_xpath(self, xpath: str, options: dict | None = None) -> dict:
312
"""
313
Retrieve raw value from router using XPath.
0 commit comments