fix: Fix missing newline in output

Regression originally caused by 8897ff8e.
This commit is contained in:
Jan Beran
2024-11-05 11:26:05 +01:00
parent 8897ff8ec7
commit 26b676bef7

View File

@@ -99,7 +99,7 @@ def detect_chip(
detect_port.connect(connect_mode, connect_attempts, detecting=True)
def check_if_stub(instance):
print(f" {instance.CHIP_NAME}", end="")
print(f" {instance.CHIP_NAME}")
if detect_port.sync_stub_detected:
instance = instance.STUB_CLASS(instance)
instance.sync_stub_detected = True