From 77a241c09cc35b0c249d30e981c15f0788af77fd Mon Sep 17 00:00:00 2001 From: zzstoatzz Date: Sun, 13 Apr 2025 18:28:44 -0500 Subject: [PATCH] fix branch name in example --- examples/smart_home/src/smart_home/hub.py | 2 +- examples/smart_home/src/smart_home/lights/server.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/smart_home/src/smart_home/hub.py b/examples/smart_home/src/smart_home/hub.py index 41aba82e5..55239b8be 100644 --- a/examples/smart_home/src/smart_home/hub.py +++ b/examples/smart_home/src/smart_home/hub.py @@ -7,7 +7,7 @@ from smart_home.settings import settings hub_mcp = FastMCP( "Smart Home Hub (phue2)", dependencies=[ - "smart_home@git+https://github.com/jlowin/fastmcp.git@n8example#subdirectory=examples/smart_home", + "smart_home@git+https://github.com/jlowin/fastmcp.git#subdirectory=examples/smart_home", ], ) diff --git a/examples/smart_home/src/smart_home/lights/server.py b/examples/smart_home/src/smart_home/lights/server.py index e9946ac49..bd4d0fccb 100644 --- a/examples/smart_home/src/smart_home/lights/server.py +++ b/examples/smart_home/src/smart_home/lights/server.py @@ -25,7 +25,7 @@ class HueAttributes(TypedDict, total=False): lights_mcp = FastMCP( "Hue Lights Service (phue2)", dependencies=[ - "smart_home@git+https://github.com/jlowin/fastmcp.git@n8example#subdirectory=examples/smart_home", + "smart_home@git+https://github.com/jlowin/fastmcp.git#subdirectory=examples/smart_home", ], )