mirror of
https://github.com/Mintplex-Labs/langchain-python.git
synced 2026-07-23 01:37:06 -04:00
c186f18aab
A incorrect data type error happened when executing _construct_path in `chain.py` as follows: ```python Error with message replace() argument 2 must be str, not int ``` The path is always a string. But the result of `args.pop(param, "")` is undefined.