Skip to content

Commit 9fded76

Browse files
committed
Fixing formatting with black before Pull request
1 parent 380dda2 commit 9fded76

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

adafruit_platformdetect/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
if sys.platform == "darwin":
2222
os.environ["DYLD_FALLBACK_LIBRARY_PATH"] = "/opt/homebrew/lib/"
2323

24+
2425
# Various methods here may retain state in future, so tell pylint not to worry
2526
# that they don't use self right now:
2627
# pylint: disable=no-self-use

adafruit_platformdetect/board.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -859,6 +859,7 @@ def lazily_generate_conditions():
859859
yield self.any_libre_computer_board
860860
yield self.generic_linux
861861
yield self.any_nxp_navq_board
862+
862863
return any(condition for condition in lazily_generate_conditions())
863864

864865
@property

adafruit_platformdetect/constants/boards.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,4 @@
589589
# NXP System on Module Computer boards
590590
NXP_IMX8MPLUS_SOM = "NXP_IMX8MPLUS_SOM"
591591

592-
_NXP_SOM_IDS = (
593-
NXP_IMX8MPLUS_SOM,
594-
)
595-
592+
_NXP_SOM_IDS = (NXP_IMX8MPLUS_SOM,)

0 commit comments

Comments
 (0)