fix clippy warning in apdu

This commit is contained in:
Fabian Kaczmarczyck
2020-12-04 13:41:56 +01:00
parent b032a15654
commit 21b8ad18ce

View File

@@ -226,7 +226,7 @@ impl TryFrom<&[u8]> for APDU {
} }
} }
return Err(ApduStatusCode::SW_INTERNAL_EXCEPTION); Err(ApduStatusCode::SW_INTERNAL_EXCEPTION)
} }
} }