mirror of
https://github.com/certbot/certbot.git
synced 2026-08-02 00:22:28 +02:00
Fix no-self-argument
This commit is contained in:
@@ -2,11 +2,11 @@ class Validator(object):
|
|||||||
"""
|
"""
|
||||||
This Class will contain an API to validate configurations.
|
This Class will contain an API to validate configurations.
|
||||||
"""
|
"""
|
||||||
def redirect(name):
|
def redirect(self, name):
|
||||||
return
|
return
|
||||||
def ocsp_stapling(name):
|
def ocsp_stapling(self, name):
|
||||||
return
|
return
|
||||||
def https(names):
|
def https(self, names):
|
||||||
return
|
return
|
||||||
def hsts(name):
|
def hsts(self, name):
|
||||||
return
|
return
|
||||||
|
|||||||
Reference in New Issue
Block a user