Skip to content

Commit 9452e24

Browse files
dbieberclaude
andcommitted
Clean up code and imports
- Sort imports alphabetically in wifi_commands.py - Sort imports alphabetically in server.py - Remove debug print statements 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 021efe4 commit 9452e24

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

gonotego/command_center/wifi_commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""WiFi command handlers for Go Note Go."""
22
from gonotego.command_center import registry
3-
from gonotego.settings import wifi
43
from gonotego.command_center import system_commands
4+
from gonotego.settings import wifi
55

66
register_command = registry.register_command
77
say = system_commands.say

gonotego/settings/server.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
from http.server import BaseHTTPRequestHandler, HTTPServer
1111
from urllib.parse import urlparse
1212

13-
from gonotego.settings import settings
1413
from gonotego.settings import secure_settings
14+
from gonotego.settings import settings
1515
from gonotego.settings import wifi
1616

1717
PORT = 8000
@@ -130,7 +130,6 @@ def do_GET(self):
130130
if key == 'WIFI_NETWORKS':
131131
# Get networks directly from the wifi module to ensure proper format
132132
networks = wifi.get_networks()
133-
print(f"DEBUG: Including WiFi networks in API response: {networks}")
134133
all_settings[key] = networks
135134
else:
136135
all_settings[key] = value

0 commit comments

Comments
 (0)