mirror of
https://github.com/certbot/certbot.git
synced 2026-06-10 09:10:37 -04:00
Update interface.py documentation...
Correctly list namedtuple challenge types in challenge_util.py
This commit is contained in:
parent
66884e05cf
commit
8a3eb4f2ba
1 changed files with 4 additions and 1 deletions
|
|
@ -17,13 +17,16 @@ class IAuthenticator(zope.interface.Interface):
|
|||
:param str domain: Domain for which challenge preferences are sought.
|
||||
|
||||
:returns: list of strings with the most preferred challenges first.
|
||||
If a type is not specified, it means the Authenticator cannot
|
||||
perform the challenge.
|
||||
:rtype: list
|
||||
|
||||
"""
|
||||
def perform(chall_list):
|
||||
"""Perform the given challenge.
|
||||
|
||||
:param list chall_list: List of challenge types defined in client.py
|
||||
:param list chall_list: List of namedtuple types defined in
|
||||
challenge_util.py. DvsniChall...ect..
|
||||
|
||||
:returns: List of responses
|
||||
If the challenge cant be completed...
|
||||
|
|
|
|||
Loading…
Reference in a new issue