Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ def rot13_cipher(text):
|
|
8 |
# Decode the text using ROT13
|
9 |
rot13_decoded = codecs.decode(rot13_encoded, 'rot_13')
|
10 |
|
11 |
-
return
|
12 |
|
13 |
# Gradio interface
|
14 |
iface = gr.Interface(
|
|
|
8 |
# Decode the text using ROT13
|
9 |
rot13_decoded = codecs.decode(rot13_encoded, 'rot_13')
|
10 |
|
11 |
+
return rot13_encoded
|
12 |
|
13 |
# Gradio interface
|
14 |
iface = gr.Interface(
|