Skip to content

Commit ea3bde0

Browse files
committed
fix typing
Signed-off-by: Maia Iyer <maia.raj.iyer@gmail.com>
1 parent b836c06 commit ea3bde0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

a2a/git_issue_agent/git_issue_agent/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class Settings(BaseSettings):
2828
)
2929
MCP_URL: str = Field(os.getenv("MCP_URL", "https://api.githubcopilot.com/mcp/"), description="Endpoint for an option MCP server")
3030
SERVICE_PORT: int = Field(os.getenv("SERVICE_PORT", 8000), description="Port on which the service will run.")
31-
GITHUB_TOKEN: str = Field(os.getenv("GITHUB_TOKEN", None), description="If not using agent with authorization, the default Github token to use")
31+
GITHUB_TOKEN: Optional[str] = Field(os.getenv("GITHUB_TOKEN", None), description="If not using agent with authorization, the default Github token to use")
3232

3333
# auth variables for token validation
3434
ISSUER: Optional[str] = Field(

0 commit comments

Comments
 (0)