fixed format

This commit is contained in:
Username 2021-09-14 15:44:10 -04:00
parent c37bb95408
commit 5b0249ac0a
2 changed files with 3 additions and 2 deletions

View File

@ -14,7 +14,8 @@ Module includes:
Created by TrapinchO Created by TrapinchO
""" """
from typing import Tuple, Dict from typing import Dict, Tuple
RotorPositionT = Tuple[int, int, int] RotorPositionT = Tuple[int, int, int]
RotorSelectionT = Tuple[str, str, str] RotorSelectionT = Tuple[str, str, str]

View File

@ -1,7 +1,7 @@
# https://en.wikipedia.org/wiki/Trifid_cipher # 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: def __encryptPart(messagePart: str, character2Number: Dict[str, str]) -> str: