diff --git a/ciphers/enigma_machine2.py b/ciphers/enigma_machine2.py index 3ed94c59d..771c4db0d 100644 --- a/ciphers/enigma_machine2.py +++ b/ciphers/enigma_machine2.py @@ -14,7 +14,8 @@ Module includes: Created by TrapinchO """ -from typing import Tuple, Dict +from typing import Dict, Tuple + RotorPositionT = Tuple[int, int, int] RotorSelectionT = Tuple[str, str, str] diff --git a/ciphers/trafid_cipher.py b/ciphers/trafid_cipher.py index f4bf45b3d..b0800b0f2 100644 --- a/ciphers/trafid_cipher.py +++ b/ciphers/trafid_cipher.py @@ -1,7 +1,7 @@ # https://en.wikipedia.org/wiki/Trifid_cipher -from typing import Tuple, Dict +from typing import Dict, Tuple def __encryptPart(messagePart: str, character2Number: Dict[str, str]) -> str: