From 0fcc65deee93091a98b37e4a401f96654db8bf55 Mon Sep 17 00:00:00 2001 From: Arcmyx Official Date: Tue, 24 Mar 2026 17:49:28 +0000 Subject: [PATCH] Update diagnostics/micropython_diagnostics.py --- diagnostics/micropython_diagnostics.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/diagnostics/micropython_diagnostics.py b/diagnostics/micropython_diagnostics.py index 93b0db5..49ade7a 100644 --- a/diagnostics/micropython_diagnostics.py +++ b/diagnostics/micropython_diagnostics.py @@ -1,7 +1,6 @@ import micropython import gc from pybricks import version -from pybricks.hubs import PrimeHub class MicroPythonDiagnostics: def __init__(self, hub): self.successfultests = 0 @@ -125,5 +124,5 @@ class MicroPythonDiagnostics: print("Failed tests:") for key, value in self.failedtests.items(): print(f" {key}: {value}") -test = MicroPythonDiagnostics(hub=PrimeHub()) -test.printAll() \ No newline at end of file +#test = MicroPythonDiagnostics(hub=PrimeHub()) +#test.printAll() \ No newline at end of file