mirror of
https://github.com/certbot/certbot.git
synced 2026-01-24 19:22:07 +03: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.
|
||||
"""
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user