From d20436001f553605b7a0cbc28bba24889076ae61 Mon Sep 17 00:00:00 2001 From: David Glaude Date: Sun, 15 Nov 2020 23:38:35 +0100 Subject: [PATCH] Make Black happy --- adafruit_pm25/uart.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/adafruit_pm25/uart.py b/adafruit_pm25/uart.py index 2cd17ed..f8569ae 100644 --- a/adafruit_pm25/uart.py +++ b/adafruit_pm25/uart.py @@ -78,4 +78,6 @@ def _read_into_buffer(self): if not remain or len(remain) != 31: raise RuntimeError("Unable to read from PM2.5 (incomplete frame)") self._buffer[1:] = remain + + # print([hex(i) for i in self._buffer])