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

Commit 08eb944

Browse files
Martinrussss
authored andcommitted
Update client.py
correct the indentation
1 parent ee9eda9 commit 08eb944

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

emv/command/client.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -111,15 +111,15 @@ def render_app(card, df, redact):
111111
as_table(data[Tag.FCI][Tag.FCI_PROP], "FCI Proprietary Data", redact=redact)
112112
)
113113
for i in range(1, 31):
114-
for j in range(1, 16):
115-
try:
116-
rec = card.read_record(j, sfi=i).data
117-
except ErrorResponse:
118-
continue
119-
if Tag.RECORD in rec:
120-
click.echo(
121-
as_table(rec[Tag.RECORD], "File: %s,%s" % (i, j), redact=redact)
122-
)
114+
for j in range(1, 16):
115+
try:
116+
rec = card.read_record(j, sfi=i).data
117+
except ErrorResponse:
118+
continue
119+
if Tag.RECORD in rec:
120+
click.echo(
121+
as_table(rec[Tag.RECORD], "File: %s,%s" % (i, j), redact=redact)
122+
)
123123

124124
@cli.command(help="Dump card information.")
125125
@click.pass_context

0 commit comments

Comments
 (0)