Merge pull request #77 from kuba/style-1

Revert acme to 43ae01b
This commit is contained in:
James Kasten 2014-11-25 01:46:54 -08:00
commit a83781f70f

View file

@ -10,18 +10,19 @@ from letsencrypt.client import le_util
SCHEMATA = dict([
(schema, json.load(open(pkg_resources.resource_filename(
__name__, "schemata/%s.json" % schema))))
for schema in ["authorization",
"authorizationRequest",
"certificate",
"certificateRequest",
"challenge",
"challengeRequest",
"defer",
"error",
"revocation",
"revocationRequest",
"statusRequest"]
__name__, "schemata/%s.json" % schema)))) for schema in [
"authorization",
"authorizationRequest",
"certificate",
"certificateRequest",
"challenge",
"challengeRequest",
"defer",
"error",
"revocation",
"revocationRequest",
"statusRequest",
]
])