mirror of
https://github.com/hwchase17/langchain.git
synced 2025-08-07 12:06:43 +00:00
* standardizes ruff dep version across all `pyproject.toml` files * cli: ruff rules and corrections * langchain: rules and corrections
8 lines
214 B
Python
8 lines
214 B
Python
from langchain_cli.namespaces.migrate.generate.utils import PKGS_ROOT
|
|
|
|
|
|
def test_root() -> None:
|
|
if PKGS_ROOT.name != "libs":
|
|
msg = "Expected PKGS_ROOT.name to be 'libs'."
|
|
raise ValueError(msg)
|