Skip to content

Commit 88da585

Browse files
formatting fixes
1 parent 3ec80d0 commit 88da585

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

scenarios/Agents/samples/semantic-kernel-mcp/agent_with_sse_server.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@
2121

2222
load_dotenv()
2323

24-
async def main():
24+
25+
async def main() -> None:
26+
"""Main function that creates the plugin, the agent and starts the conversation loop."""
2527
async with (
2628
# 1. Login to Azure and create a Azure AI Project Client
2729
DefaultAzureCredential() as creds,

scenarios/Agents/samples/semantic-kernel-mcp/agent_with_stdio_server.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@
2121

2222
load_dotenv()
2323

24-
async def main():
24+
25+
async def main() -> None:
26+
"""Main function that creates the plugin, the agent and starts the conversation loop."""
2527
async with (
2628
# 1. Login to Azure and create a Azure AI Project Client
2729
DefaultAzureCredential() as creds,

0 commit comments

Comments
 (0)