1
0
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:
Jakub Warmuz
2014-11-21 21:42:25 +01:00
parent d88eb92fbe
commit a62c02a9cf

View File

@@ -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