mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
17 lines
435 B
Python
17 lines
435 B
Python
|
from __future__ import annotations
|
||
|
|
||
|
|
||
|
class File:
|
||
|
def __init__(self, name: str, content: list[str] | None = None) -> None:
|
||
|
self.name = name
|
||
|
self.content = "\n".join(content or [])
|
||
|
|
||
|
def __eq__(self, __value: object) -> bool:
|
||
|
if not isinstance(__value, File):
|
||
|
return NotImplemented
|
||
|
|
||
|
if self.name != __value.name:
|
||
|
return False
|
||
|
|
||
|
return self.content == __value.content
|