Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -65,7 +65,7 @@ def load_student_data():
|
|
| 65 |
return pd.DataFrame()
|
| 66 |
|
| 67 |
try:
|
| 68 |
-
response = supabase.from_('companies').select('*')
|
| 69 |
if response.data:
|
| 70 |
df = pd.DataFrame(response.data)
|
| 71 |
numeric_cols = ['cgpa', 'backlogs', 'typing_speed']
|
|
|
|
| 65 |
return pd.DataFrame()
|
| 66 |
|
| 67 |
try:
|
| 68 |
+
response = supabase.from_('companies').select('*').execute()
|
| 69 |
if response.data:
|
| 70 |
df = pd.DataFrame(response.data)
|
| 71 |
numeric_cols = ['cgpa', 'backlogs', 'typing_speed']
|