community[patch]: fix formatting (#24443)

Somehow this got through CI:
https://github.com/langchain-ai/langchain/pull/24363
This commit is contained in:
ccurme
2024-07-19 10:38:53 -04:00
committed by GitHub
parent 242b085be7
commit f99369a54c
2 changed files with 22 additions and 22 deletions

View File

@@ -118,10 +118,10 @@ class GmailSearch(GmailBaseTool):
"body": body,
"subject": subject,
"sender": sender,
"from": email_msg['From'],
"date": email_msg['Date'],
"to": email_msg['To'],
"cc": email_msg['Cc'],
"from": email_msg["From"],
"date": email_msg["Date"],
"to": email_msg["To"],
"cc": email_msg["Cc"],
}
)
return results