mirror of https://github.com/MISP/misp-objects
fix: Missing pep8 check
parent
620ac3600c
commit
a521f9008e
|
@ -45,6 +45,6 @@ for mispobject in objects:
|
||||||
with open(fullPathClusters) as fp:
|
with open(fullPathClusters) as fp:
|
||||||
c = json.load(fp)
|
c = json.load(fp)
|
||||||
if not c['description'].endswith('.'):
|
if not c['description'].endswith('.'):
|
||||||
c['description'] = c['description']+"."
|
c['description'] = c['description'] + "."
|
||||||
v = "- [objects/{}](objects/{}/definition.json) - {}".format(c['name'], c['name'],c['description'])
|
v = "- [objects/{}](objects/{}/definition.json) - {}".format(c['name'], c['name'], c['description'])
|
||||||
print(v)
|
print(v)
|
||||||
|
|
Loading…
Reference in New Issue