From 58a0f4914ecbef235c1a73af0832a9742d96ee5b Mon Sep 17 00:00:00 2001 From: thomas6g <30746275+thomas6g@users.noreply.github.com> Date: Sun, 28 Feb 2021 16:45:05 +0000 Subject: [PATCH] Fix formatting, 2nd try --- src/adafruit_blinka/microcontroller/ft232h/pin.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/adafruit_blinka/microcontroller/ft232h/pin.py b/src/adafruit_blinka/microcontroller/ft232h/pin.py index 18c5e31..42ae5ab 100644 --- a/src/adafruit_blinka/microcontroller/ft232h/pin.py +++ b/src/adafruit_blinka/microcontroller/ft232h/pin.py @@ -39,8 +39,7 @@ class Pin: raise RuntimeError("Can not init a None type pin.") # FT232H does't have configurable internal pulls? if pull: - raise NotImplementedError( - "Internal pull up/down not currently supported.") + raise NotImplementedError("Internal pull up/down not currently supported.") pin_mask = Pin.ft232h_gpio.pins | 1 << self.id current = Pin.ft232h_gpio.direction if mode == self.OUT: -- 2.49.0