Skip to content

Commit

Permalink
Reorder imports in Todoist tool example
Browse files Browse the repository at this point in the history
  • Loading branch information
Ansub committed Feb 6, 2025
1 parent c2b2193 commit e7e808e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cookbook/tools/todoist_tool.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
from agno.agent import Agent
from agno.models.openai import OpenAIChat
from agno.tools.todoist import TodoistTools

"""
Example showing how to use the Todoist Tools with Agno
Expand All @@ -16,6 +12,10 @@
- Or provide them when creating the TodoistTools instance
"""

from agno.agent import Agent
from agno.models.openai import OpenAIChat
from agno.tools.todoist import TodoistTools


todoist_agent = Agent(
name="Todoist Agent",
Expand Down

0 comments on commit e7e808e

Please sign in to comment.