Fixed code formatting by running black on detect.py, try #4. Oh, my!

This commit is contained in:
Dale Weber 2020-05-19 05:56:57 -07:00
parent 0de104ca7a
commit d3cc2a29e0

View file

@ -24,10 +24,12 @@ print("Is this a Clockwork Pi board?", detector.board.any_clockwork_pi_board)
print("Is this an embedded Linux system?", detector.board.any_embedded_linux) print("Is this an embedded Linux system?", detector.board.any_embedded_linux)
print("Is this a generic Linux PC?", detector.board.GENERIC_LINUX_PC) print("Is this a generic Linux PC?", detector.board.GENERIC_LINUX_PC)
print("Is this a UDOO Bolt?", detector.board.UDOO_BOLT) print("Is this a UDOO Bolt?", detector.board.UDOO_BOLT)
print("Is this an OS environment variable special case?", detector.board.FTDI_FT232H print(
"Is this an OS environment variable special case?",
detector.board.FTDI_FT232H
| detector.board.MICROCHIP_MCP2221 | detector.board.MICROCHIP_MCP2221
| detector.board.BINHO_NOVA | detector.board.BINHO_NOVA
| detector.board.GREATFET_ONE | detector.board.GREATFET_ONE,
) )
if detector.board.any_raspberry_pi: if detector.board.any_raspberry_pi: