From d8478ab127afa8de5225a224da2449412bef5124 Mon Sep 17 00:00:00 2001 From: DarkMechanikum Date: Thu, 27 Jun 2024 00:02:45 +0300 Subject: [PATCH] changed starfive board detection function --- adafruit_platformdetect/board.py | 1 - 1 file changed, 1 deletion(-) diff --git a/adafruit_platformdetect/board.py b/adafruit_platformdetect/board.py index 0b99cfd..26dac8b 100644 --- a/adafruit_platformdetect/board.py +++ b/adafruit_platformdetect/board.py @@ -230,7 +230,6 @@ class Board: def _starfive_id(self) -> Optional[str]: model = None model_value = self.detector.get_device_model() - print(model_value) if "VisionFive" in model_value and "V2" in model_value: model = boards.VISIONFIVE2 return model