Skip to content

Commit 26df2aa

Browse files
PatOnTheBackpoyea
authored andcommitted
Removed Unused import sys (#922)
I removed `import sys` because it is not used in the program. This addresses a [recommendation from lgtm](https://lgtm.com/projects/g/TheAlgorithms/Python/snapshot/66c4afbd0f28f9989f35ddbeb5c9263390c5d192/files/ciphers/caesar_cipher.py?sort=name&dir=ASC&mode=heatmap)
1 parent 69bed59 commit 26df2aa

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

ciphers/caesar_cipher.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import sys
21
def encrypt(strng, key):
32
encrypted = ''
43
for x in strng:

0 commit comments

Comments
 (0)