Skip to content

Commit 5a79a95

Browse files
committed
Fix long line
1 parent b44b788 commit 5a79a95

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

adafruit_platformdetect/board.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,8 @@ def any_giant_board(self):
346346
@property
347347
def any_embedded_linux(self):
348348
"""Check whether the current board is any embedded Linux device."""
349-
return self.any_raspberry_pi or self.any_beaglebone or self.any_orange_pi or self.any_giant_board
349+
return self.any_raspberry_pi or self.any_beaglebone or \
350+
self.any_orange_pi or self.any_giant_board
350351

351352
def __getattr__(self, attr):
352353
"""

0 commit comments

Comments
 (0)