@@ -43,8 +43,8 @@ class ESPSPI_WiFiManager:
43
43
NORMAL = const (1 )
44
44
ENTERPRISE = const (2 )
45
45
46
- # pylint: disable=too-many-arguments, line-too-long
47
- def __init__ (self , esp , secrets , status_pixel = None , attempts = 2 , connection_type = NORMAL , debug = False ):
46
+ # pylint: disable=too-many-arguments
47
+ def __init__ (self , esp , secrets , status_pixel = None , attempts = 2 , connection_type = NORMAL ):
48
48
"""
49
49
:param ESP_SPIcontrol esp: The ESP object we are using
50
50
:param dict secrets: The WiFi and Adafruit IO secrets dict (See examples)
@@ -56,7 +56,7 @@ def __init__(self, esp, secrets, status_pixel=None, attempts=2, connection_type=
56
56
"""
57
57
# Read the settings
58
58
self .esp = esp
59
- self .debug = debug
59
+ self .debug = False
60
60
self .ssid = secrets ['ssid' ]
61
61
self .password = secrets ['password' ]
62
62
self .attempts = attempts
@@ -78,7 +78,7 @@ def __init__(self, esp, secrets, status_pixel=None, attempts=2, connection_type=
78
78
self .ent_user = secrets ['ent_user' ]
79
79
if secrets .get ('ent_password' ):
80
80
self .ent_password = secrets ['ent_password' ]
81
- # pylint: enable=too-many-arguments, line-too-long
81
+ # pylint: enable=too-many-arguments
82
82
83
83
def reset (self ):
84
84
"""
0 commit comments