Spaces:
Sleeping
Sleeping
🧹 Remove get_cat_images limit test code after debugging
Browse files
app.py
CHANGED
|
@@ -24,7 +24,7 @@ def get_cat_images(limit: int = 1) -> list:
|
|
| 24 |
Args:
|
| 25 |
limit: Number of images to return between 1 and 100
|
| 26 |
"""
|
| 27 |
-
|
| 28 |
# Ensure the limit is within the allowed range
|
| 29 |
if limit < 1 or limit > 100:
|
| 30 |
return "Limit must be between 1 and 100."
|
|
|
|
| 24 |
Args:
|
| 25 |
limit: Number of images to return between 1 and 100
|
| 26 |
"""
|
| 27 |
+
|
| 28 |
# Ensure the limit is within the allowed range
|
| 29 |
if limit < 1 or limit > 100:
|
| 30 |
return "Limit must be between 1 and 100."
|