adt commited on
Commit
1527f28
·
1 Parent(s): 3ed9628

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -6
app.py CHANGED
@@ -49,12 +49,6 @@ def make_clickable_cell(cell):
49
  return f'<a target="_blank" href="{cell}">{cell}</a>'
50
 
51
 
52
- # %% app.ipynb 7
53
- for col in columns_to_click:
54
- df[col] = df[col].apply(make_clickable_cell)
55
-
56
- return df
57
-
58
  # Load the data to get the columns for setting up datatype
59
  dataframe = get_data()
60
  dtypes = ["str" if c not in columns_to_click else "html" for c in dataframe.columns]
 
49
  return f'<a target="_blank" href="{cell}">{cell}</a>'
50
 
51
 
 
 
 
 
 
 
52
  # Load the data to get the columns for setting up datatype
53
  dataframe = get_data()
54
  dtypes = ["str" if c not in columns_to_click else "html" for c in dataframe.columns]