From 73df0a86ac2e941b507fb15db8145b82b795f529 Mon Sep 17 00:00:00 2001 From: hdahme Date: Sun, 19 Jan 2025 15:17:42 -0800 Subject: [PATCH] linting fixes in other libraries --- .../langchain_community/tools/office365/send_event.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/libs/community/langchain_community/tools/office365/send_event.py b/libs/community/langchain_community/tools/office365/send_event.py index 052fc19c0e3d2..a943ec01b3933 100644 --- a/libs/community/langchain_community/tools/office365/send_event.py +++ b/libs/community/langchain_community/tools/office365/send_event.py @@ -8,12 +8,10 @@ from typing import List, Optional, Type from zoneinfo import ZoneInfo -from langchain_core.callbacks import CallbackManagerForToolRun -from pydantic import BaseModel, Field - from langchain_community.tools.office365.base import O365BaseTool from langchain_community.tools.office365.utils import UTC_FORMAT - +from langchain_core.callbacks import CallbackManagerForToolRun +from pydantic import BaseModel, Field class SendEventSchema(BaseModel): """Input for CreateEvent Tool."""