shchuro commited on
Commit
02b1bd6
·
1 Parent(s): c1ea364

Fix row_count

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -17,8 +17,8 @@ with gr.Blocks() as demo:
17
  gr.Dataframe(
18
  value=df,
19
  interactive=True,
20
- max_rows=len(df),
21
- max_cols=len(df.columns),
22
  )
23
 
24
  with gr.Tab("About"):
 
17
  gr.Dataframe(
18
  value=df,
19
  interactive=True,
20
+ row_count=len(df),
21
+ col_count=len(df.columns),
22
  )
23
 
24
  with gr.Tab("About"):