Skip to content

Commit caec241

Browse files
prompts.py: fix pedantic warnings
1 parent a97499e commit caec241

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mcp_server/prompts/prompts.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def register_prompts(mcp):
2323

2424
@mcp.prompt()
2525
async def rca(
26-
dci_job_id: str = Annotated[
26+
dci_job_id: Annotated[
2727
str, "The DCI job ID for which to perform root cause analysis (RCA)."
2828
],
2929
) -> str:
@@ -50,7 +50,7 @@ async def rca(
5050

5151
@mcp.prompt()
5252
async def weekly(
53-
subject: str = Annotated[
53+
subject: Annotated[
5454
str, "The subject of the analysis (team name or id, remoteci name or id)."
5555
],
5656
) -> str:
@@ -67,7 +67,7 @@ async def weekly(
6767

6868
@mcp.prompt()
6969
async def biweekly(
70-
subject: str = Annotated[
70+
subject: Annotated[
7171
str, "The subject of the analysis (team name or id, remoteci name or id)."
7272
],
7373
) -> str:

0 commit comments

Comments
 (0)