style(examples): apply ruff formatting to sample scripts

This commit is contained in:
etienne-hd
2026-04-29 13:53:46 +02:00
parent cbdf3d7821
commit 4623b0627a
6 changed files with 57 additions and 45 deletions

View File

@@ -2,6 +2,7 @@
import lbc
def main() -> None:
# Initialize the Leboncoin API client
client = lbc.Client()
@@ -16,5 +17,6 @@ def main() -> None:
print("Pro status:", user.is_pro)
print("Ads count:", user.total_ads)
if __name__ == "__main__":
main()