mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-06 10:31:29 +08:00
Removed Unused import sys
(#922)
I removed `import sys` because it is not used in the program.
This addresses a [recommendation from lgtm](66c4afbd0f/files/ciphers/caesar_cipher.py
)
This commit is contained in:
@ -1,4 +1,3 @@
|
|||||||
import sys
|
|
||||||
def encrypt(strng, key):
|
def encrypt(strng, key):
|
||||||
encrypted = ''
|
encrypted = ''
|
||||||
for x in strng:
|
for x in strng:
|
||||||
|
Reference in New Issue
Block a user