style: apply ruff-format to entire codebase

First-time run of ruff-format via pre-commit hook normalises quote
style, trailing commas, and whitespace across 188 Python files.
No logic changes.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
James Smith
2026-07-05 14:48:11 +01:00
parent 82e64104fe
commit 96172ca593
189 changed files with 19883 additions and 19552 deletions
+63 -75
View File
@@ -93,91 +93,79 @@ from .scanner import (
__all__ = [
# Main scanner
'UnifiedWiFiScanner',
'get_wifi_scanner',
'reset_wifi_scanner',
"UnifiedWiFiScanner",
"get_wifi_scanner",
"reset_wifi_scanner",
# Models
'WiFiObservation',
'WiFiAccessPoint',
'WiFiClient',
'WiFiProbeRequest',
'WiFiScanResult',
'WiFiScanStatus',
'WiFiCapabilities',
'ChannelStats',
'ChannelRecommendation',
"WiFiObservation",
"WiFiAccessPoint",
"WiFiClient",
"WiFiProbeRequest",
"WiFiScanResult",
"WiFiScanStatus",
"WiFiCapabilities",
"ChannelStats",
"ChannelRecommendation",
# Channel analysis
'ChannelAnalyzer',
'analyze_channels',
"ChannelAnalyzer",
"analyze_channels",
# Hidden SSID correlation
'HiddenSSIDCorrelator',
'get_hidden_correlator',
"HiddenSSIDCorrelator",
"get_hidden_correlator",
# Constants - Bands
'BAND_2_4_GHZ',
'BAND_5_GHZ',
'BAND_6_GHZ',
'BAND_UNKNOWN',
"BAND_2_4_GHZ",
"BAND_5_GHZ",
"BAND_6_GHZ",
"BAND_UNKNOWN",
# Constants - Channels
'CHANNELS_2_4_GHZ',
'CHANNELS_5_GHZ',
'CHANNELS_6_GHZ',
'NON_OVERLAPPING_2_4_GHZ',
'NON_OVERLAPPING_5_GHZ',
"CHANNELS_2_4_GHZ",
"CHANNELS_5_GHZ",
"CHANNELS_6_GHZ",
"NON_OVERLAPPING_2_4_GHZ",
"NON_OVERLAPPING_5_GHZ",
# Constants - Security
'SECURITY_OPEN',
'SECURITY_WEP',
'SECURITY_WPA',
'SECURITY_WPA2',
'SECURITY_WPA3',
'SECURITY_WPA_WPA2',
'SECURITY_WPA2_WPA3',
'SECURITY_ENTERPRISE',
'SECURITY_UNKNOWN',
"SECURITY_OPEN",
"SECURITY_WEP",
"SECURITY_WPA",
"SECURITY_WPA2",
"SECURITY_WPA3",
"SECURITY_WPA_WPA2",
"SECURITY_WPA2_WPA3",
"SECURITY_ENTERPRISE",
"SECURITY_UNKNOWN",
# Constants - Cipher
'CIPHER_NONE',
'CIPHER_WEP',
'CIPHER_TKIP',
'CIPHER_CCMP',
'CIPHER_GCMP',
'CIPHER_UNKNOWN',
"CIPHER_NONE",
"CIPHER_WEP",
"CIPHER_TKIP",
"CIPHER_CCMP",
"CIPHER_GCMP",
"CIPHER_UNKNOWN",
# Constants - Auth
'AUTH_OPEN',
'AUTH_PSK',
'AUTH_SAE',
'AUTH_EAP',
'AUTH_OWE',
'AUTH_UNKNOWN',
"AUTH_OPEN",
"AUTH_PSK",
"AUTH_SAE",
"AUTH_EAP",
"AUTH_OWE",
"AUTH_UNKNOWN",
# Constants - Signal bands
'SIGNAL_STRONG',
'SIGNAL_MEDIUM',
'SIGNAL_WEAK',
'SIGNAL_VERY_WEAK',
'SIGNAL_UNKNOWN',
"SIGNAL_STRONG",
"SIGNAL_MEDIUM",
"SIGNAL_WEAK",
"SIGNAL_VERY_WEAK",
"SIGNAL_UNKNOWN",
# Constants - Proximity bands
'PROXIMITY_IMMEDIATE',
'PROXIMITY_NEAR',
'PROXIMITY_FAR',
'PROXIMITY_UNKNOWN',
"PROXIMITY_IMMEDIATE",
"PROXIMITY_NEAR",
"PROXIMITY_FAR",
"PROXIMITY_UNKNOWN",
# Constants - Scan modes
'SCAN_MODE_QUICK',
'SCAN_MODE_DEEP',
"SCAN_MODE_QUICK",
"SCAN_MODE_DEEP",
# Helper functions
'get_band_from_channel',
'get_band_from_frequency',
'get_channel_from_frequency',
'get_signal_band',
'get_proximity_band',
'get_vendor_from_mac',
"get_band_from_channel",
"get_band_from_frequency",
"get_channel_from_frequency",
"get_signal_band",
"get_proximity_band",
"get_vendor_from_mac",
]