10 lines
321 B
Python
10 lines
321 B
Python
# core/commands/mkdir.py
|
|
from core.connection import BuzzerError
|
|
|
|
def execute(conn):
|
|
"""Confirmt die aktuelle Firmware."""
|
|
try:
|
|
conn.send_command(f"confirm")
|
|
print(f"✅ Firmware erfolgreich bestätigt.")
|
|
except BuzzerError as e:
|
|
print(f"❌ Fehler beim Bestätigen der Firmware: {e}") |