Skip to content

Commit 5b0249a

Browse files
committed
fixed format
1 parent c37bb95 commit 5b0249a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Diff for: ciphers/enigma_machine2.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
1515
Created by TrapinchO
1616
"""
17-
from typing import Tuple, Dict
17+
from typing import Dict, Tuple
18+
1819
RotorPositionT = Tuple[int, int, int]
1920
RotorSelectionT = Tuple[str, str, str]
2021

Diff for: ciphers/trafid_cipher.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# https://en.wikipedia.org/wiki/Trifid_cipher
22

33

4-
from typing import Tuple, Dict
4+
from typing import Dict, Tuple
55

66

77
def __encryptPart(messagePart: str, character2Number: Dict[str, str]) -> str:

0 commit comments

Comments
 (0)