Skip to content

Commit 3c1bc12

Browse files
committed
black
1 parent 5d9eeba commit 3c1bc12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_epd/epd.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ def command(self, cmd, data=None, end=True):
178178

179179
def _spi_transfer(self, data):
180180
"""Transfer one byte or bytearray, toggling the cs pin if required by the EPD chipset"""
181-
if isinstance(data, int): # single byte!
181+
if isinstance(data, int): # single byte!
182182
self._spibuf[0] = data
183183

184184
# easy & fast case: array and no twiddling
@@ -187,7 +187,7 @@ def _spi_transfer(self, data):
187187
return None
188188

189189
# if its a single byte
190-
if isinstance(data, int): # single byte!
190+
if isinstance(data, int): # single byte!
191191
if self._single_byte_tx:
192192
self._cs.value = False
193193
try:

0 commit comments

Comments
 (0)