refactor(cli): drop Python 3.9 (#32964)

This commit is contained in:
Mason Daugherty
2025-09-15 19:22:53 -04:00
committed by GitHub
parent 369858de19
commit 244c699551
18 changed files with 634 additions and 730 deletions

View File

@@ -1,11 +1,12 @@
"""GitHub utilities."""
from __future__ import annotations
import http.client
import json
from typing import Optional
def list_packages(*, contains: Optional[str] = None) -> list[str]:
def list_packages(*, contains: str | None = None) -> list[str]:
"""List all packages in the langchain repository templates directory.
Args: