examples: real_airtag: Show reports in chronological order

This commit is contained in:
Mike Almeloo
2024-04-28 23:29:26 +02:00
committed by GitHub
parent a66f1f01b7
commit 09691a1de7

View File

@@ -35,7 +35,7 @@ def main(plist_path: str) -> int:
# step 3: print 'em
print()
print("Location reports:")
for report in reports:
for report in sorted(reports):
print(f" - {report}")
return 0