Fix no-self-argument

This commit is contained in:
Jakub Warmuz
2014-11-22 00:22:09 +01:00
parent d88eb92fbe
commit a62c02a9cf
+4 -4
View File
@@ -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