Skip to content

Commit ecbed2a

Browse files
committed
fix: linting
1 parent 30e3a8e commit ecbed2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/arduino/app_internal/core/peripherals/bpp_codec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ def decode(self, message: bytes) -> bytes | None:
226226
elif mode == MODE_NONE:
227227
return message[HEADER_SIZE:]
228228

229-
except InvalidTag as e:
229+
except InvalidTag:
230230
logger.warning(f"Decryption failed: encryption key or data integrity issue")
231231
return None
232232
except Exception as e:

0 commit comments

Comments
 (0)