mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
7 lines
124 B
Python
7 lines
124 B
Python
|
from typing import Any
|
||
|
|
||
|
|
||
|
class AnyStr(str):
|
||
|
def __eq__(self, other: Any) -> bool:
|
||
|
return isinstance(other, str)
|