Skip to content

Commit 82243cd

Browse files
Hasenncclauss
andauthored
revert unintended autoformatting
Co-authored-by: Christian Clauss <cclauss@me.com>
1 parent d6dd098 commit 82243cd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ciphers/enigma_machine2.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,8 @@ def _plugboard(pbstring: str) -> dict:
125125
# b) has even length (so pairs can be made)
126126
if not isinstance(pbstring, str):
127127
raise TypeError(
128-
f"Plugboard setting isn't type string ({type(pbstring)})")
128+
f"Plugboard setting isn't type string ({type(pbstring)})"
129+
)
129130
elif len(pbstring) % 2 != 0:
130131
raise Exception(f"Odd number of symbols ({len(pbstring)})")
131132
elif pbstring == "":

0 commit comments

Comments
 (0)