Fix hf 14a raw always raising AttributeError

This commit is contained in:
Augusto Zanellato
2023-10-17 23:33:19 +02:00
parent cb1878440d
commit aa3fe711af
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -2046,7 +2046,7 @@ examples/notes:
def on_exec(self, args: argparse.Namespace):
options = {
'activate_rf_field': self.bool_to_bit(args.activate_rf),
'wait_response': self.bool_to_bit(not args.response),
'wait_response': self.bool_to_bit(not args.no_response),
'append_crc': self.bool_to_bit(args.crc),
'auto_select': self.bool_to_bit(args.select_tag),
'keep_rf_field': self.bool_to_bit(args.keep_rf),