Skip to content

Commit dda8d3d

Browse files
GeneAIclaude
authored andcommitted
fix: Remove duplicate import os in sbar_wizard.py
Move import os to top of file and remove duplicate that was causing E402 linting error. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent ac0998e commit dda8d3d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

wizards/sbar_wizard.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
import json
1515
import logging
16+
import os
1617
from datetime import datetime
1718
from typing import Any
1819
from uuid import uuid4
@@ -50,8 +51,6 @@
5051
_wizard_sessions: dict[str, dict[str, Any]] = {}
5152

5253
# Log Redis configuration at module load
53-
import os
54-
5554
redis_url = os.getenv("REDIS_URL")
5655
if redis_url:
5756
logger.info(f"🔧 REDIS_URL environment variable detected (starts with: {redis_url[:15]}...)")

0 commit comments

Comments
 (0)