fatmacankara commited on
Commit
10bf2b1
·
1 Parent(s): a83bdd0

Update code/process_input.py

Browse files
Files changed (1) hide show
  1. code/process_input.py +1 -1
code/process_input.py CHANGED
@@ -39,7 +39,7 @@ def clean_data(input_set):
39
 
40
  data = data.astype(str)
41
  if initial_len != len(data):
42
- print(f'{initial_len- len(data)} of {initial_len} datapoints is omitted. Check your input.')
43
  return data
44
  except ValueError:
45
  st.write('Your input is in the wrong format. Please see the example.')
 
39
 
40
  data = data.astype(str)
41
  if initial_len != len(data):
42
+ st.write(f'{initial_len- len(data)} of {initial_len} datapoints is omitted. Check your input.')
43
  return data
44
  except ValueError:
45
  st.write('Your input is in the wrong format. Please see the example.')