freemt commited on
Commit
14c9c8a
1 Parent(s): e0fd6eb

Remove text1, text2, thresh from ifn

Browse files
Files changed (1) hide show
  1. ubee/__main__.py +6 -6
ubee/__main__.py CHANGED
@@ -95,13 +95,13 @@ def ifn(
95
  pd.DataFrame
96
  """
97
  # global text1, text2, thresh
98
- ic(text1)
99
- ic(text2)
100
- ic(type(text1))
101
- ic(type(text2))
102
 
103
- res1 = [elm.strip() for elm in text1.splitlines() if elm.strip()]
104
- res2 = [elm.strip() for elm in text2.splitlines() if elm.strip()]
105
 
106
  ic(res1)
107
  ic(res2)
 
95
  pd.DataFrame
96
  """
97
  # global text1, text2, thresh
98
+ ic(text1.value)
99
+ ic(text2.value)
100
+ ic(type(text1.value))
101
+ ic(type(text2.value))
102
 
103
+ res1 = [elm.strip() for elm in text1.value.splitlines() if elm.strip()]
104
+ res2 = [elm.strip() for elm in text2.value.splitlines() if elm.strip()]
105
 
106
  ic(res1)
107
  ic(res2)