Skip to content

Commit a5666ea

Browse files
committed
TR updates, second round
1 parent 6caca3e commit a5666ea

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

python-uv/main.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def find_breed_info(breed_name):
1515
for breed in json_response:
1616
if breed["name"] == breed_name:
1717
return breed
18-
return {}
18+
return None
1919

2020

2121
def display_breed_profile(breed):
@@ -50,7 +50,6 @@ def main():
5050
except Exception as e:
5151
print(f"Error: {e}")
5252
return 1
53-
5453
return 0
5554

5655

python-uv/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "rpcats"
33
version = "0.1.0"
4-
description = "Add your description here"
4+
description = "Display cat information for the specified breed."
55
readme = "README.md"
66
requires-python = ">=3.13"
77
dependencies = [

0 commit comments

Comments
 (0)