We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 27865ff + 111e319 commit 3f12cd2Copy full SHA for 3f12cd2
adafruit_matrixportal/network.py
@@ -49,7 +49,9 @@ class Network(NetworkBase):
49
"""
50
51
def __init__(self, **kwargs):
52
- extract_values = kwargs.pop("extract_values")
+ extract_values = True
53
+ if "extract_values" in kwargs:
54
+ extract_values = kwargs.pop("extract_values")
55
debug = kwargs.pop("debug")
56
wifi = WiFi(**kwargs)
57
0 commit comments