From 5b0249ac0a0f9c36c3cfbab8423eb72925a73ffb Mon Sep 17 00:00:00 2001 From: Username Date: Tue, 14 Sep 2021 15:44:10 -0400 Subject: [PATCH] fixed format --- ciphers/enigma_machine2.py | 3 ++- ciphers/trafid_cipher.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) 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: