Skip to content

Commit 296e1dc

Browse files
committed
style: Fix linting errors reported by Ruff
1 parent 174b474 commit 296e1dc

3 files changed

Lines changed: 3 additions & 5 deletions

File tree

lab_reflection_agent.ipynb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
"metadata": {},
2020
"outputs": [],
2121
"source": [
22-
"import os\n",
2322
"from dotenv import load_dotenv\n",
2423
"\n",
2524
"# Import our custom agent class\n",

main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
from pydantic import BaseModel, Field
55
from typing import List
66

7-
# Load environment variables from a .env file
8-
load_dotenv()
9-
107
# Import core logic
118
from reflection_pattern_agent.reflection_agent import ReflectionAgent
129

10+
# Load environment variables from a .env file
11+
load_dotenv()
12+
1313
# Set up logging
1414
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
1515
logger = logging.getLogger(__name__)

tests/test_reflection_agent.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import pytest
21
from reflection_pattern_agent.reflection_agent import ReflectionAgent
32

43
# Create a fake response object that looks exactly like the real OpenAI response.

0 commit comments

Comments
 (0)