Skip to content

Commit

Permalink
Fix type hint error
Browse files Browse the repository at this point in the history
  • Loading branch information
albertogeniola committed Apr 16, 2024
1 parent 18a87a5 commit 3ac322d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion meross_iot/controller/mixins/encryption.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import base64
from Crypto.Cipher import AES
from enum import Enum
from typing import Dict

from meross_iot.model.enums import Namespace

Expand All @@ -16,7 +17,7 @@ class EncryptionAlg(Enum):
class EncryptionSuiteMixin(object):
_execute_command: callable
_DEFAULT_IV="0000000000000000".encode("utf8")
_abilities: dict[str, dict]
_abilities: Dict[str, dict]

def __init__(self, device_uuid: str,
manager,
Expand Down

0 comments on commit 3ac322d

Please sign in to comment.