Skip to content

Commit

Permalink
fix enclosed quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyNikiforov authored Jun 23, 2024
1 parent f105daf commit 6d42183
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/icloudpd/authentication.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def request_2fa(icloud: PyiCloudService, logger: logging.Logger) -> None:
sys.exit(1)

for i, device in enumerate(devices):
print(f" {i}: {device["obfuscatedNumber"]}")
print(f" {i}: {device['obfuscatedNumber']}")

index_str = f"..{devices_count - 1}" if devices_count > 1 else ""
code:int = click.prompt(
Expand Down

0 comments on commit 6d42183

Please sign in to comment.