fix the comma error
Browse files
app.py
CHANGED
|
@@ -80,7 +80,7 @@ def root():
|
|
| 80 |
|
| 81 |
return {
|
| 82 |
"message": "Sambodhan Department Classification API is running.",
|
| 83 |
-
"status": "Active" if predictor else "Inactive"
|
| 84 |
"model_version": latest_tag
|
| 85 |
}
|
| 86 |
|
|
|
|
| 80 |
|
| 81 |
return {
|
| 82 |
"message": "Sambodhan Department Classification API is running.",
|
| 83 |
+
"status": "Active" if predictor else "Inactive",
|
| 84 |
"model_version": latest_tag
|
| 85 |
}
|
| 86 |
|