Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Tarraann committed Jun 23, 2023
1 parent 5e07d66 commit a48da0d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
from superagi.models.types.login_request import LoginRequest
from superagi.models.user import User
from superagi.tools.base_tool import BaseTool
from superagi.models.tools_config import ToolConfig
from superagi.models.tool_config import ToolConfig

app = FastAPI()

Expand Down
2 changes: 1 addition & 1 deletion superagi/helper/google_calendar_creds.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from googleapiclient.discovery import build
from sqlalchemy.orm import sessionmaker
from superagi.models.db import connect_db
from superagi.models.tools_config import ToolConfig
from superagi.models.tool_config import ToolConfig
from superagi.resource_manager.manager import ResourceManager

class GoogleCalendarCreds:
Expand Down
4 changes: 2 additions & 2 deletions superagi/tools/google_calendar/google_calendar_toolkit.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
from abc import ABC
from superagi.tools.base_tool import BaseToolKit, BaseTool
from superagi.tools.base_tool import BaseToolkit, BaseTool
from typing import Type, List
from superagi.tools.google_calendar.create_calendar_event import CreateEventCalendarTool
from superagi.tools.google_calendar.delete_calendar_event import DeleteCalendarEventTool
from superagi.tools.google_calendar.list_calendar_events import ListCalendarEventsTool
from superagi.tools.google_calendar.event_details_calendar import EventDetailsCalendarTool


class GoogleCalendarToolKit(BaseToolKit, ABC):
class GoogleCalendarToolKit(BaseToolkit, ABC):
name: str = "Google Calendar Toolkit"
description: str = "Google Calendar Tool kit contains all tools related to Google Calendar"

Expand Down

0 comments on commit a48da0d

Please sign in to comment.