Skip to content
This repository was archived by the owner on Mar 27, 2026. It is now read-only.

Commit 67bd3db

Browse files
committed
Fix formatting
1 parent 90abb15 commit 67bd3db

1 file changed

Lines changed: 10 additions & 4 deletions

File tree

emv/card.py

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,16 @@ def _list_applications_static_aid(self):
5353
# This is a bit of a hack, we transform this response into something which looks
5454
# like the result from the SFI method, so that callers of list_applications get a
5555
# consistent result.
56-
apps.append(TLV({
57-
Tag.ADF_NAME: res.data[Tag.FCI][Tag.DF],
58-
Tag.APP_LABEL: res.data[Tag.FCI][Tag.FCI_PROP][Tag.APP_LABEL]
59-
}))
56+
apps.append(
57+
TLV(
58+
{
59+
Tag.ADF_NAME: res.data[Tag.FCI][Tag.DF],
60+
Tag.APP_LABEL: res.data[Tag.FCI][Tag.FCI_PROP][
61+
Tag.APP_LABEL
62+
],
63+
}
64+
)
65+
)
6066
except ErrorResponse:
6167
continue
6268
return apps

0 commit comments

Comments
 (0)