We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6caca3e commit a5666eaCopy full SHA for a5666ea
python-uv/main.py
@@ -15,7 +15,7 @@ def find_breed_info(breed_name):
15
for breed in json_response:
16
if breed["name"] == breed_name:
17
return breed
18
- return {}
+ return None
19
20
21
def display_breed_profile(breed):
@@ -50,7 +50,6 @@ def main():
50
except Exception as e:
51
print(f"Error: {e}")
52
return 1
53
-
54
return 0
55
56
python-uv/pyproject.toml
@@ -1,7 +1,7 @@
1
[project]
2
name = "rpcats"
3
version = "0.1.0"
4
-description = "Add your description here"
+description = "Display cat information for the specified breed."
5
readme = "README.md"
6
requires-python = ">=3.13"
7
dependencies = [
0 commit comments