Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -25,7 +25,7 @@ def get_data():
|
|
| 25 |
df.dropna(subset=['Model'], inplace=True)
|
| 26 |
|
| 27 |
# Drop rows where the 'Parameters \n(B)' column is 'TBA'
|
| 28 |
-
df = df[df["
|
| 29 |
|
| 30 |
# Apply make_clickable_cell to the specified columns
|
| 31 |
for col in columns_to_click:
|
|
|
|
| 25 |
df.dropna(subset=['Model'], inplace=True)
|
| 26 |
|
| 27 |
# Drop rows where the 'Parameters \n(B)' column is 'TBA'
|
| 28 |
+
df = df[df["Announced \n▼"] != "TBA"]
|
| 29 |
|
| 30 |
# Apply make_clickable_cell to the specified columns
|
| 31 |
for col in columns_to_click:
|