mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-23 21:11:08 +00:00
fixed format
This commit is contained in:
parent
c37bb95408
commit
5b0249ac0a
|
@ -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]
|
||||
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue
Block a user