Skip to content

Commit

Permalink
docs: fixed example in request_verification_tokens() docstring (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredhendrickson13 committed Apr 4, 2023
1 parent d21c086 commit f1baa3f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions simple_acme_dns/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,10 +197,10 @@ def request_verification_tokens(self) -> dict:
Examples:
>>> client.request_verification_tokens()
[
('_acme-challenge.test1.example.com', 'moY32lkdsZ3VWHM1mdM...'),
('_acme-challenge.test2.example.com', 'asldfkjslweietj23_b...')
]
{
"_acme-challenge.test1.example.com": ["moY32lkdsZ3VWHM1mdM..."],
"_acme-challenge.test2.example.com": ["asldfkjslweietj23_b...", "nMIIEvAIBA2-212_w..."]
}
"""
# Variables
verification_tokens = {}
Expand Down

0 comments on commit f1baa3f

Please sign in to comment.