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()
@@ -18,5 +19,6 @@ def main() -> None:
# Print information about the user who posted the ad
print("User info:", ad.user)
if __name__ == "__main__":
main()