Skip to content

Commit 002fefc

Browse files
committed
Remove trailing whitespace
1 parent 47fc968 commit 002fefc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/refactor/input.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
def encode_char(char, offset):
33
return chr(
44
(
5-
(ord(char) - ord(" ") + offset) %
5+
(ord(char) - ord(" ") + offset) %
66
(ord("~") - ord(" ") + 1)
77
) + (ord(" "))
88
)

examples/refactor/output/caesar_cipher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
def encode_char(char, offset):
22
return chr(
33
(
4-
(ord(char) - ord(" ") + offset) %
4+
(ord(char) - ord(" ") + offset) %
55
(ord("~") - ord(" ") + 1)
66
) + (ord(" "))
77
)

0 commit comments

Comments
 (0)