Skip to content

Commit

Permalink
fix flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
Quentame committed Dec 15, 2024
1 parent 5a12102 commit 04f5388
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions tests/example.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,12 @@ async def demo():
# Be ready to authorize the application on the Freebox if you use this
# example for the first time

# await fbx.open(host="[custom].freeboxos.fr", port=[https_port]) # Valid certificate
# await fbx.open(host="[api_domain].fbxos.fr", port=[https_port]) # Invalid, self signed, certificate
await fbx.open(host="mafreebox.freebox.fr", port=443) # Invalid, self signed, certificate
# Valid certificate
# await fbx.open(host="[custom].freeboxos.fr", port=[https_port])
# Invalid, self signed, certificate
# await fbx.open(host="[api_domain].fbxos.fr", port=[https_port])
# Invalid, self signed, certificate
await fbx.open(host="mafreebox.freebox.fr", port=443)

print("\n" * 2)
print("=" * 50)
Expand Down

0 comments on commit 04f5388

Please sign in to comment.