Skip to content

Commit 4c67776

Browse files
authored
default jwt_data to empty dict
1 parent 3261baa commit 4c67776

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

fronius_solarweb/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def __init__(
6060
self.login_password = login_password
6161
self.pv_system_id = pv_system_id
6262
self.httpx_client = httpx_client or AsyncClient()
63-
self.jwt_data: dict = None
63+
self.jwt_data: dict = {}
6464
self._jwt_base_header = {
6565
"Content-Type": "application/json-patch+json",
6666
"AccessKeyId": self.access_key_id,

0 commit comments

Comments
 (0)