Omnibus commited on
Commit
623810f
·
verified ·
1 Parent(s): a93dbdd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -1,7 +1,8 @@
1
  import gradio as gr
2
  name="this name"
3
  def hide_message(reg,sec):
4
- return reg.join(chr(0xE0000 + ord(ch)) for ch in sec)
 
5
 
6
  #print(convert_to_tag_chars(name))
7
 
 
1
  import gradio as gr
2
  name="this name"
3
  def hide_message(reg,sec):
4
+ out = reg + " " + ''.join(chr(0xE0000 + ord(ch)) for ch in sec)
5
+ return out
6
 
7
  #print(convert_to_tag_chars(name))
8