freemt
commited on
Commit
·
487e563
1
Parent(s):
d5b5fe3
Update df_a.astype(str)
Browse files- litbee/fetch_upload.py +2 -1
litbee/fetch_upload.py
CHANGED
@@ -188,7 +188,8 @@ def fetch_upload():
|
|
188 |
logger.debug(" df_a.to_numpy(): %s", df_a_np)
|
189 |
ic(df_a_np)
|
190 |
|
191 |
-
st.table(df_a.replace("", np.nan)) # st.table(df_a) "Could not convert '' with type str
|
|
|
192 |
|
193 |
gb = GridOptionsBuilder.from_dataframe(df_a)
|
194 |
gb.configure_pagination(paginationAutoPageSize=True)
|
|
|
188 |
logger.debug(" df_a.to_numpy(): %s", df_a_np)
|
189 |
ic(df_a_np)
|
190 |
|
191 |
+
# st.table(df_a.replace("", np.nan)) # st.table(df_a) "Could not convert '' with type str
|
192 |
+
st.table(df_a.astype(str))
|
193 |
|
194 |
gb = GridOptionsBuilder.from_dataframe(df_a)
|
195 |
gb.configure_pagination(paginationAutoPageSize=True)
|