Skip to content

Commit

Permalink
refactor: Runs format.sh script to format the code using Ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
Harsh-2909 committed Feb 12, 2025
1 parent 182b6bd commit 81eaa78
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions libs/agno/agno/agent/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -541,8 +541,7 @@ def _run(
self.run_response.content = model_response_chunk.content
self.run_response.created_at = model_response_chunk.created_at
yield self.create_run_response(
content=model_response_chunk.content,
created_at=model_response_chunk.created_at
content=model_response_chunk.content, created_at=model_response_chunk.created_at
)
# If the model response is a tool_call_started, add the tool call to the run_response
elif model_response_chunk.event == ModelResponseEvent.tool_call_started.value:
Expand Down
4 changes: 2 additions & 2 deletions libs/agno/agno/tools/bitbucket.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import base64
import json
import os
from typing import Optional, Dict, Union, Any
from typing import Any, Dict, Optional, Union

import requests
import base64

from agno.tools import Toolkit
from agno.utils.log import logger
Expand Down

0 comments on commit 81eaa78

Please sign in to comment.