Spaces:
Running on CPU Upgrade

lunarflu HF Staff commited on
Commit
1133d15
·
verified ·
1 Parent(s): ddcc64f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -56,11 +56,11 @@ async def on_ready():
56
 
57
  URL_test = "https://docs.google.com/spreadsheets/d/1hQSsIg1Y9WdBF_CdNM1L1rUUREoxKqRTe3_ILo-WK8w/edit#gid=0"
58
  csv_url_test = URL.replace('/edit#gid=', '/export?format=csv&gid=')
59
- response = requests.get(csv_url)
60
  if response.status_code == 200:
61
  csv_content = response.text
62
  print(csv_content)
63
- worksheet_test.update('A1', csv_data)
64
 
65
 
66
  def calculate_level(xp):
 
56
 
57
  URL_test = "https://docs.google.com/spreadsheets/d/1hQSsIg1Y9WdBF_CdNM1L1rUUREoxKqRTe3_ILo-WK8w/edit#gid=0"
58
  csv_url_test = URL.replace('/edit#gid=', '/export?format=csv&gid=')
59
+ response = requests.get(csv_url_test)
60
  if response.status_code == 200:
61
  csv_content = response.text
62
  print(csv_content)
63
+ worksheet_test.update('A1', csv_content)
64
 
65
 
66
  def calculate_level(xp):