mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 07:12:54 -04:00
Fix no-self-argument
This commit is contained in:
parent
d88eb92fbe
commit
a62c02a9cf
1 changed files with 4 additions and 4 deletions
|
|
@ -2,11 +2,11 @@ class Validator(object):
|
|||
"""
|
||||
This Class will contain an API to validate configurations.
|
||||
"""
|
||||
def redirect(name):
|
||||
def redirect(self, name):
|
||||
return
|
||||
def ocsp_stapling(name):
|
||||
def ocsp_stapling(self, name):
|
||||
return
|
||||
def https(names):
|
||||
def https(self, names):
|
||||
return
|
||||
def hsts(name):
|
||||
def hsts(self, name):
|
||||
return
|
||||
|
|
|
|||
Loading…
Reference in a new issue