Skip to content

Commit 9f91a8a

Browse files
committed
final lint
1 parent 196ed97 commit 9f91a8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_miniesptool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ def mac_addr(self):
165165
mac_addr = [0] * 6
166166
mac0, mac1, mac2, mac3 = self._efuses
167167
if self._chipfamily == ESP8266:
168-
if (mac3 != 0):
168+
if mac3 != 0:
169169
oui = ((mac3 >> 16) & 0xff, (mac3 >> 8) & 0xff, mac3 & 0xff)
170170
elif ((mac1 >> 16) & 0xff) == 0:
171171
oui = (0x18, 0xfe, 0x34)

0 commit comments

Comments
 (0)