tomaszki commited on
Commit
a5c582f
1 Parent(s): 5027b5e

Change recommended file length

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -78,7 +78,7 @@ def decode(byte_stream):
78
 
79
  with encode_col:
80
  st.header('Convert your python file to binary.')
81
- python_file = st.file_uploader("Upload your python file here. I recommend files up to 50-100 lines, so it doesn't take too long.")
82
  if python_file is not None:
83
  stringio = StringIO(python_file.getvalue().decode("utf-8"))
84
  code = stringio.read()
 
78
 
79
  with encode_col:
80
  st.header('Convert your python file to binary.')
81
+ python_file = st.file_uploader("Upload your python file here. I recommend files up to 10-20 lines, so it doesn't take too long.")
82
  if python_file is not None:
83
  stringio = StringIO(python_file.getvalue().decode("utf-8"))
84
  code = stringio.read()