maom commited on
Commit
6ff7501
·
verified ·
1 Parent(s): 5b5977a

fix syntax

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -7,7 +7,7 @@ import altair as alt
7
  st.set_page_config(layout='wide')
8
 
9
  # parse out gene_ids from URL query args to it's possible to link to this page
10
- query_params = st.query_params()
11
  if "gene_id_1" in query_params.keys():
12
  gene_id_1 = query_params["gene_id_1"]
13
  else:
 
7
  st.set_page_config(layout='wide')
8
 
9
  # parse out gene_ids from URL query args to it's possible to link to this page
10
+ query_params = st.query_params
11
  if "gene_id_1" in query_params.keys():
12
  gene_id_1 = query_params["gene_id_1"]
13
  else: